Error connecting to Database

All was good untill I changed my python to 2.7.5

http://toadityakumar.com:8080/

I can see a DB error : <class '_mysql_exceptions.OperationalError'>: (1045, "Access denied for user 'erpnext'@'localhost' (using password: YES)") 
      args = (1045, "Access denied for user 'erpnext'@'localhost' (using password: YES)") 
      message = ''

Which file contains the DB credentials so I can re-check it if that's the issue?



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.
check conf.py in your erpnext folder

On Tuesday, October 1, 2013 3:12:01 PM UTC+5:30, Aditya Kumar wrote:
All was good untill I changed my python to 2.7.5


I can see a DB error : <class '_mysql_exceptions.OperationalError'>: (1045, "Access denied for user 'erpnext'@'localhost' (using password: YES)") 
      args = (1045, "Access denied for user 'erpnext'@'localhost' (using password: YES)") 
      message = ''

Which file contains the DB credentials so I can re-check it if that's the issue?



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.
Yes I checked that but the database username and pwd which I find - I am not able to locate this DB in my cpanel somehow.

Since all this was created during the installation process, how do I find out where this DB is located?

On Tuesday, October 1, 2013 5:13:53 PM UTC+5:30, rushabh wrote:
check conf.py in your erpnext folder

On Tuesday, October 1, 2013 3:12:01 PM UTC+5:30, Aditya Kumar wrote:
All was good untill I changed my python to 2.7.5


I can see a DB error : <class '_mysql_exceptions.OperationalError'>: (1045, "Access denied for user 'erpnext'@'localhost' (using password: YES)") 
      args = (1045, "Access denied for user 'erpnext'@'localhost' (using password: YES)") 
      message = ''

Which file contains the DB credentials so I can re-check it if that's the issue?



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.
you can try to do in the Putty Terminal :

login to your Server and run the following command :

> mysql -u root -p

(now this will prompt for the mysql server password )
enter the password and u can login to the mysql , once you have logged in :
write the following command :

> show databases;

this will return you the list of databases;

On Tuesday, 1 October 2013 12:42:01 UTC+3, Aditya Kumar wrote:
All was good untill I changed my python to 2.7.5


I can see a DB error : <class '_mysql_exceptions.OperationalError'>: (1045, "Access denied for user 'erpnext'@'localhost' (using password: YES)") 
      args = (1045, "Access denied for user 'erpnext'@'localhost' (using password: YES)") 
      message = ''

Which file contains the DB credentials so I can re-check it if that's the issue?



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.