03.12.11 - Make public MySQL server under Linux
0 comments
How to make public your MySQL server over the Network
For security reasons when you install into your Linux distro (Ubuntu, CentOS, etc.) a MySQL server, it was only accessible by the loopback or local environment. If you want to access through the network to it you have to configure it.
We have to edit your "/etc/my.conf" and add/edit the next lines:
Don't forget to restart the daemon:
We have to edit your "/etc/my.conf" and add/edit the next lines:
[mysqld]
port = 3306
bind-address = 10.10.0.1
# skip-networking
port = 3306
bind-address = 10.10.0.1
# skip-networking
sudo /etc/init.d/mysqld restart
Via: Parallels
Comments
There are no comments jet. Be the first to comment!
