The MySQL server is currently offline. Mysql::initcache() failed: The mysql server is offline.

I was getting below error while accessing MySQL Databases from cPanel though MySQL service was running on server -
The MySQL server is currently offline.
Mysql::initcache() failed: The mysql server is offline.

Solution :-

1. Restart MySQL on server -

WHM >>Restart Services >> SQL Server (MySQL) >> Are you sure you wish to restart this service? >> Yes
OR
service mysql restart
OR
/etc/init.d/mysqld start

2. Reset MySQL root password - ( It's stored in '/root/.my.cnf', which cPanel updates when you change the password.)

1. Stop the MySQL running on server - service mysql stop
2. Start the MySQL without password - mysqld_safe --skip-grant-tables &
3. Connect to MySQL server as the root user - mysql -u root
4. Now reset new password for MySQL's root user -
mysql> use mysql;
mysql> update user set password=PASSWORD("New_Root_-Password") where User='root';
mysql> flush privileges;
mysql> quit
5. Stop and restart the MySQL service.

Let me know if you've any thoughts.
  • 2 Users Found This Useful
Was this answer helpful?

Related Articles

How to disable the php mail() function on cPanel with CloudLinux?

If your server installed cPanel with CloudLinux along alt-php and you want to disable php mail()...

How to Install or Uninstall EasyApache 4 on cPanel server?

EasyApache Software is included within your cPanel and WHM license which is very easy and useful...

How to to know SSH port on the cPanel server?

Steps to know SSH port of cPanel server -1. Login to WHM with your login details. 2. Go to...

Access Denied. Unable to establish a PHP session.

I was getting below error while accessing phpMyAdmin - Access Denied Unable to establish a PHP...

Powered by WHMCompleteSolution