Has anybody else had a error message like this in webmin?
Failed to save MySQL server options : Missing or invalid IP address to listen on
Has anybody else had a error message like this in webmin?
Failed to save MySQL server options : Missing or invalid IP address to listen on
Edit the /etc/mysql/my.cnf
file to configure the basic settings such as TCP/IP port, IP address binding, and other options. In Ubuntu 16.10, which you are using (see Problems with the modification of Apache2), the MySQL database server configuration file is located at /etc/mysql/mysql.conf.d/mysqld.cnf
. To edit it open the terminal and type:
sudo nano /etc/mysql/mysql.conf.d/mysqld.cnf
The instructions for using nano editor are always found at the bottom of every page. The only two nano keyboard shortcuts that you need to know are for WriteOut and Exit. Press the keyboard combination Ctrl+O and after that press Enter to save the file being edited. Press the keyboard combination Ctrl+X to exit nano.
Then restart the MySQL server:
sudo systemctl restart mysql.service