Categories: cPanel

Database connection error: RoundCube in cPanel

Table of Contents

DATABASE ERROR: CONNECTION FAILED! Unable to connect to the database! Please contact your server-administrator.

You’ve to check number of things for troubleshooting this. Please do follow the steps below:

1, Check your MySQL is running or not.

From the command-line you can follow the below pasted command:

/etc/init.d/mysqld status

If it’s running the output should be like;

[root@vps ~]# /etc/init.d/mysqld status mysqld (pid 837) is running…

Okay, then we can move onto database and the user “roundcube”. The database and the user is “roundcube”. The password for the database user will be obtained from the file “/usr/local/cpanel/base/3rdparty/roundcube/config/db.inc.php” in a cPanel server.

# grep roundcube /usr/local/cpanel/base/3rdparty/roundcube/config/db.inc.php $rcmail_config[‘db_dsnw’] = ‘mysql://roundcube:YfxAEk31hEN0dhEF@localhost/roundcube‘; // postgres example: ‘pgsql://roundcube:pass@localhost/roundcubemail’;

2, Check the database connectivity from command line

Yes, we need to verify whether the db user and password is working. Please use the following command:

# mysql -u roundcube -p

If you are able to get in, check the database is listing under the user.

mysql> show databases; +——————–+ | Database | +——————–+ | information_schema | | roundcube | +——————–+ 2 rows in set (0.09 sec)

If the user password is not working that’s reason for this db error. Please reset the user password.

3, Check the tables are existing under the database;

Switch to database “roundcube”;

mysql> use roundcube;

Check tables;

mysql> show tables; +———————+ | Tables_in_roundcube | +———————+ | cache | | cache_index | | cache_messages | | cache_thread | | contactgroupmembers | | contactgroups | | contacts | | cp_schema_version | | dictionary | | identities | | searches | | session | | system | | users | +———————+ 14 rows in set (0.00 sec)

If all tables exists then go ahead and repair the database. Please follow the command to repair a db.

# mysqlcheck -r roundcube

If database or tables are missing, you can rebuild the roundcube from commanline.

Command to rebuild RoundCube:

/usr/local/cpanel/bin/update-roundcube –force

FYI, the force rebuild will results in missing of address book, signatures etc
Otherwise, if you have a backup you can try a restoration instead-of rebuild.

4, RoundCube batabase, user, tables and password all are working. But I have saved address book and others in email accounts, can I rebuild the roundcube safely?

If all working, please take a backup of database then drop it before rebuilding the roundcube.

4.1 Backing up db:

# mysqldump roundcube > roundcube.sql

4.2 Dropping db:

DROP DATABASE roundcube;

Run above command in MySQL prompt.

4.3 Rebuild

/usr/local/cpanel/bin/update-roundcube –force

4.4 Restore

# mysql roundcube < roundcube.sql

That’s it!


Vishwajit Kale
Vishwajit Kale blazed onto the digital marketing scene back in 2015 and is the digital marketing strategist of Hostripples, a company that aims to provide affordable web hosting solutions. Vishwajit is experienced in digital and content marketing along with SEO. He's fond of writing technology blogs, traveling and reading.

Recent Posts

The Science Behind Social Media Posting Times

In today's digital landscape, timing is everything. Whether you're a social media manager, business owner, or content creator, the success…

7 days ago

Mastering Google Search Console: Tips for New Users

Are you a website owner? Maintaining the website is the prime concern for any website owner. Yes, it’s equally important…

1 week ago

A Comprehensive Guide to Changing and Protecting the WordPress Login URL

If you’ve planned to launch a WordPress website, you might get a question, “How do I log in to WordPress?”…

2 weeks ago

The Ultimate Showdown: Linux vs Windows for VPS Hosting

As the demand for virtual private servers (VPS) continues to grow, businesses and individuals are faced with a crucial decision:…

1 month ago

Questions to Ask Your Web Hosting Support Team

Web hosting is a large industry, as many other factors help any web hosting provider to form a company. The…

1 month ago