Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. sudo DEBIAN_PRIORITY=critical apt-get install -y -q mysql-server php5-mysql
  2.  
  3. $ mysql -u root
  4.  
  5. ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
  6.  
  7. $ mysql -u "root" -p ""
  8. $ mysql --user="root" --password=""
  9.  
  10. $ mysqladmin -u root password ""
  11.  
  12. mysqladmin: connect to server at 'localhost' failed
  13. error: 'Access denied for user 'root'@'localhost' (using password: NO)'
  14. but unfortunately without any success.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement