How to Edit the MySQL my.cnf File Print

  • 0

In this guide, we’ll show you how to make changes to your database settings in the MySQL my.cnf file. For example, you may need to increase the number of max_connections or the query_cache_size value for your server.

To do this, you simply log in the server via SSH and edit the my.cnf file using an editor such as Nano. This article will explain the steps to view and edit your my.cnf file. We’ll also show you how to view your MySQL variables through SSH then how to access them in phpMyAdmin, where they can be edited.

You will need root access to our VPS or Dedicated server to follow this guide.

  • How to View Mysql Settings in the my.cnf File
  • Editing the Mysql my.cnf File
  • Viewing the Mysql Variables Through Shell
  • Viewing MySQL Variables in phpMyAdmin

Want more performance and power from your website? WPS Hosting's VPS Hosting plans provide hyperfast site speeds on high-performance NVMe servers.

 

View VPS Hosting Plans

 
Don’t have time to read the article. Watch our video tutorial here.

How to View Mysql Settings in the my.cnf File

  1. Login to your server via SSH
  2. To view the MySQL my.cnf settings type the following:
    cat /etc/my.cnf


    The contents of the my.cnf file will display similar to the snapshot above.

Editing the Mysql my.cnf File

  1. Login to your server via SSH.
  2. To edit the MySQL settings with nano type the following:
    nano /etc/my.cnf

    There are several editors you can use in shell. Nano, Vim, or Emacs. This article will focus only on Nano.
  3. Find the line to edit. For example, if you want to edit the max_connections, find the following line.
    max_connections=100
  4. To increase the max_connections to 110 change it to the following.
    max_connections=110
  5. Enter Ctrl + O to “WriteOut” or save the settings.
  6. Then Ctrl + X to exit.
  7. Restart MySQL by typing the following.
    service mysql restart

    Now the max_connections is increased to 110 instead of 100.

Viewing the Mysql Variables Through Shell

  1. Login to your server via SSH.
  2. Type the following command.
    mysqladmin variables


    The variables will display similar to the snapshot above.

Viewing MySQL Variables in phpMyAdmin

  1. Log into your phpMyAdmin.
  2. Click the Variables tab at the top right. Then PhpMyAdmin will list all the variables and their settings on your server.
  3. If you want to edit the values, you should edit the my.cnf file as described above.

Now you know how to edit your database settings in the MySQL my.cnf file and view database variables. For more guides check out our full section on Working with Databases.

JB
John-Paul BrionesContent Writer II
 

John-Paul is an Electronics Engineer that spent most of his career in IT. He has been a Technical Writer for WPS since 2013.

More Articles by John-Paul 

Was this answer helpful?

« Back