MySQL server is currently offline. Error: Too many connections at /usr/local/cpanel/Cpanel/Mysql.pm line 173.

phpMyAdmin and MySQL Databases in cPanel were displaying me the below error -
==============================================================
The MySQL server is currently offline.

Error while connecting to MySQL: (XID 98u48v) Database Connect Error: Too many connections Error while connecting to MySQL: (XID 98u48v) Database Connect Error: Too many connections at /usr/local/cpanel/Cpanel/Mysql.pm line 173.

==============================================================
Sites on server were down with error as - Error establishing a database connection
==============================================================

Necessary Checks :-

1. Check the status of MySQL service -
    service mysql status
    Output - SUCCESS! MySQL running (515897)
    MySQL service was running without any issue.

 2. Check the current MySQL processes on server -
     mysqladmin pr
     Output - mysqladmin: connect to server at 'localhost' failed 
     error: 'Too many connections'
     That means your server has exceeded the limit of handling the MySQL connection.

Solutions :-

1. You can kill the current running MySQL processes forcefully using -
1. mysqladmin pr ------------------> It will list the current running process.
2. kill process id --------------------> Kill the current processes using their ID.

Below is the example for you -

If you'll fire 'mysqladmin pr' then output will be as follow -
-------------------------------------------------------------------------------------+-------------------------
| Id | User | Host | db | Command | Time | State | Info +--------+------------------+-----------+-------------------+---------+------+----------------+----------
539054 | user_name | localhost |user_name | Sleep | 2 | |
-------------------------------------------------------------------------------------+-------------------------
If you'd like to kill process '539054' then fire - kill 539054

Still you're facing the same issue then move to step 2.

2. Update the maximum number of connection allowed on server. Default value is set to 151, you can update according your server capability.

1. Edit my.cnf file on location - /etc/my.cnf or /etc/mysql/my.cnf
2. Update the maximum number of connectionmax_connections=xxx ------> Replace xxx value as per your need
3. Restart the MySQL service - /etc/init.d/mysql restart OR service mysql restart

It resolved my issue!

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to reset SSH port back to default port 22?

In some situations most of us may come across a problem that we are able to log into the WHM but...

How to setup the root login alert notification email?

Its very important to keep a check on your servers and who logs into the server, From security...

How to enable Open SSL on WHM?

Before enabling open SSL, you can check whether it is already enabled on your server. Please fire...

How to install mod_pagespeed on WHM?

'mod_pagespeed' is module of Apache which is nothing but plugin which is used for compressing the...

How to enable Hot Link Protection in cPanel?

To avoid other sites to use your website's bandwidth, you can enable the hot link protection....

Powered by WHMCompleteSolution