I have tried to connect to mysql using the default password provided after using the one click LEMP install and I’m just getting ERROR 1045 (28000): Access denied for user ‘root’@‘localhost’ (using password: NO)
Can someone help please.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi,
Looks like the server is not recognizing that you are submitting the password - are you trying to connect to via the command line?
If so, your command might look like this:
Notice how there is no space between the
-u
and-p
flags and the information we are submitting, user name and password. This is my goto format for accessing mysql on the command line (although rarely as the root user once set up).I would also mention that your mysql password and other helpful information should be displayed when you login via SSH, in the MOTD or message of the Day information. More info in this older answer, too, if you’re still stuck:
https://www.digitalocean.com/community/questions/lemp-one-click-app-what-s-the-default-mysql-password
Hope this helps and good luck!