i am trying to access mysql into an remote server, and create a database there. i am using putty to connect. the problem is that i get the "access denied" error whatever i do:
:mysql -p
:mysql -u <username> -p
.
.
.
i still get the warning.
ERROR 1045 (28000): Access denied for user 'username'@'localhost' (using password: NO)
ERROR 1045 (28000): Access denied for user 'username'@'localhost' (using password: YES)
one for each occasion, when i do not enter a password, and when i do.
You are having issues with remote access to MySql. From here
First, login over ssh to remote MySQL database server
Once connected you need edit the mysql configuration file my.cfg using text editor such as vi.
In Debian Linux file is located at
/etc/mysql/my.cnf
Make sure line skip-networking is commented (or remove line) and add following line
For example, if your MySQL server IP is 172.20.5.2 then entire block should be look like as follows:
Where - bind-address : IP address to bind to. - skip-networking : Don’t listen for TCP/IP connections at all. All interaction with mysqld must be made via Unix sockets. This option is highly recommended for systems where only local requests are allowed. Since you need to allow remote connection this line should removed from file or put it in comment state.
Restart your mysql service to take change in effect
Step # 5 Grant access to remote IP address
# mysql -u root –p mysql
Grant access to new database
If you want to add new database called foo for user bar and remote IP 162.54.10.20 then you need to type following commands at mysql> prompt:
Grant access to existing database
Let us assume that you are always making connection from remote IP called 162.54.10.20 for database called webdb for user webadmin then you need to grant access to this IP address. At mysql> prompt type following command for existing database:
Type exit command to logout mysql
From remote system type command
You can also use telnet to connect to port 3306 for testing purpose