I'm trying to log into MySQL on a remote server. I have ssh-ed into the server, and I am trying to access the server's local MySQL db.
I got the login credentials from the config file of a local application
mysql -u user -p
but when I login using the same password, I get
ERROR 1045 (28000): Access denied for user 'user'@'localhost'
Details:
username: user
password: password
table : table_name
host : localhost
I have tried the same password a few times, but there must be something other than an incorrect password. I'm very confused, what am I doing wrong?