03.12.11 - Make public MySQL server under Linux

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:
[mysqld]
port = 3306
bind-address = 10.10.0.1
# skip-networking
Don't forget to restart the daemon:
sudo /etc/init.d/mysqld restart
Via: Parallels
More news about:  linux
Tags:  network,  MySQL,  port,  3306,  mysqld

Comments

There are no comments jet. Be the first to comment!

Comment