Dev License: This installation of WHMCS is running under a Development License and is not authorized to be used for production use. Please report any cases of abuse to abuse@whmcs.com
Linux VPS and Dedicated server customers can edit MySQL configuration settings by modifying my.cnf file located at /etc directory. In this article, you will learn how to view and edit my.cnf file. To do this you will have to connect to a Linux machine via SSH (with root user) and edit my.cnf file with your favorite editor.

To view the contents of the my.cnf file, run the following command.
The contents of my.cnf file will look like as shown in the following snapshot.

cat /etc/my.cnf

My Config File

Note that the content of the my.cnf file might differ depending on the operating system, control panel and several other factors. Furthermore, the lines starting with "#" are comments and they will tell you what these different settings are for.

Edit my.cnf file


To edit the MySQL settings with my.cnf file type the following command.

nano /etc/my.cnf

Find the settings you wish to edit. Say, for example, you want to increase the max_connections limit for MySQL server. Locate max_connections and set your desired value.

max_connections=20

To increase the max_connectionsto 30 change it to the following.

max_connections=30

Enter Ctrl + O to save the settings and Ctrl + X to exit. Restart the MySQL server by typing the following command.

service mysql restart


View MySQL variables


Type the following command to view MySQL variables. The MySQL variables will look like as shown in the following snapshot.

mysqladmin variables

Mysqladmin Variables
Was this answer helpful? 1 Users Found This Useful (2 Votes)

Powered by WHMCompleteSolution