Jump to content

[SOLVED] I think im locked out?!


advancedfuture

Recommended Posts

So I setup a database in mysql, everything runs no problems, and the web application is connecting and pulling from the database no problem.

 

Now I SSH into my server today because I want to setup a new database.

 

root@air629# mysql -USER root -p

Enter Password: ********

Error 2002 (HY000): Can't Connect to local MySQL server through socket 'ER' (2)

root@air629# mysql

Error 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

 

 

OKAY! This is bizzare.. my web app connects to the database using root login and it works no problems, yet I can login through the command prompt. It was working no problems 2 days ago the last time I logged in. Any ideas whats wrong, and what I can do to regain access to my databases?

ERROR 1045 (28000):

Link to comment
https://forums.phpfreaks.com/topic/132486-solved-i-think-im-locked-out/
Share on other sites

root@air629# mysql -USER root -p

Enter Password: ********

Error 2002 (HY000): Can't Connect to local MySQL server through socket 'ER' (2)

root@air629# mysql

Error 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

 

 

Looks like you're getting a socket error, and then you're not supplying a password....

 

Try:

 

mysql -hlocalhost -uroot -p

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.