If you want to run a MySQL server on you local network, you can disable name resolve feature in order to get faster connection (Up to 10x faster). Remember that after disabling name resolve you have to enter your server IP address each time you want to use it.
Ok, follow me if you want faster connection:
- Open your MySQL config file.
/etc/my.cnf
- Find
[mysqld] and insert following string below it
Here is an example
[mysqld]
port = 3306
socket = /tmp/mysql.sock
skip-locking
skip-name-resolve