0

I am making this https://stackoverflow.com/a/18756674/1197775.

But I am getting this:

mysql -uspot -pfakepasswd
ERROR 1045 (28000): Access denied for user 'spot'@'localhost' (using password: YES)

How can I debug this problem?

Update

I also tried MySQL ERROR 1045 (28000): Access denied for user 'bill'@'localhost' (using password: YES).

No anonymous users anymore, but no luck yet.

Update 2

SELECT User,Host FROM mysql.user;

+------------------+-------------------+
| User             | Host              |
+------------------+-------------------+
| root             | 127.0.0.1         |
| root             | ::1               |
| spot             | %                 |
| root             | localhost         |
+------------------+-------------------+
Community
  • 1
  • 1
sites
  • 19,991
  • 16
  • 81
  • 136

1 Answers1

0

Try 'mysql -u spot -p' and then enter the password.

Manuel Darveau
  • 4,175
  • 3
  • 23
  • 35