↧
MySQL: Allow Remote connect to MySQL from any host
By default, you’re not allowed to connect to your MySQL database from other machine. To enabled that, you first need to set a password to root user in your MySQL Database: mysqladmin -u root password...
View ArticleMySQL: Find out which port MySQL Runs on
In Linux, you can try use this command: netstat -tlnp Normally it’s set to run on port 3306. This command shows you something like: Active Internet connections (only servers) Proto Recv-Q Send-Q Local...
View Article