The ‘Error establishing a database connection’ notice in WordPress is a fatal error that makes your site inaccessible to users. It happens when WordPress is unable to connect to the database.
Since multiple factors can affect this connection, the error can be a bit difficult to troubleshoot for beginners.
We have been running our blog on WordPress for the past 16 years and have encountered a variety of errors and warnings, including the ‘Error establishing a database connection.’ Through our experience and lots of trial and error, we’ve learned how to troubleshoot these issues without disrupting our site.
In this article, we will show you how to easily fix the ‘Error establishing a database connection’ on your WordPress site, step by step.
What Causes the Error Establishing a Database Connection in WordPress?
A database is software that makes it easy to store, organize, and retrieve data from other software.
As a content management system, WordPress uses a database to store all your content and other website data. It then connects to the database each time someone visits your website.
WordPress needs the following information for connecting to the database:
- Your database name
- Database username and password
- Database server
This information is stored in your WordPress configuration file, which is called wp-config.php.
If any of this information is incorrect, then WordPress will fail to connect to your database server, and you will see the ‘Error establishing a database connection’ error.
It is one of the most common WordPress errors. Apart from incorrect credentials, this error can also appear if the database server is down or the database files are corrupt.
Having said that, let’s take a look at how to fix the ‘Error establishing database connection’ issue in WordPress with step-by-step troubleshooting.
1. Check Your WordPress Database Credentials
Incorrect credentials are the most common cause of the database connection error. If you recently moved your WordPress site to a new host, then this is likely the problem.
Your WordPress database credentials are stored in the wp-config.php file. It is the WordPress configuration file that contains important settings, including database information.
If you have not edited a wp-config.php file before, then take a look at our beginner’s guide on how to edit the wp-config.php file for more instructions.
You will be looking for the following lines in the wp-config.php file:
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'database_name_here' );
/** MySQL database username */
define( 'DB_USER', 'username_here' );
/** MySQL database password */
define( 'DB_PASSWORD', 'password_here' );
/** MySQL hostname */
define( 'DB_HOST', 'localhost' );
Here, you must make sure that the information for the database name, username, password, and database host is correct.
You can confirm this information from your WordPress hosting account dashboard. For this tutorial, we will be using Bluehost, but the process will be similar for other hosting panels as well.
Upon logging in, click on the ‘Website’ tab in the left column and then switch to the ‘Advanced’ tab. Then, scroll down to the ‘Database’ section and click the ‘Manage’ button next to it.
This will open the MySQL Databases page in cPanel in a new window.
Here, you can find your database name and username in the ‘Current Database’ section. Keep in mind to copy and paste these details into a notepad so you can add them to the wp-config file.
Next, scroll down to the ‘Current Users’ section, where you can click on the ‘Change Password’ link next to your database name.
This will take you to a new screen, where you can change the database password according to your liking.
Once you have confirmed all your database details, you can change that information in your wp-config.php file if needed.
After that, try visiting your website again to see if the database connection error has gone.
If you can still see the error, then this means that something else is wrong.
2. Check Your Database Host Information
If you are confident that your database name, username, and password information are accurate, then you will want to make sure you are using the correct database host information.
Most WordPress hosting companies use localhost as your database host. However, some managed WordPress hosting companies use separate servers to host databases. In that case, your database host information will not be localhost.
This means that you will need to contact your WordPress hosting company to confirm these details.
3. Repair WordPress Database
Now, you may be getting a different error in the wp-admin dashboard, such as ‘One or more database tables are unavailable’ or ‘The database may need to be repaired.’ In that case, you need to repair your database.
You can do this by adding the following line in your wp-config.php file. Make sure to add it just before the ‘That’s all, stop editing! Happy blogging’ line:
define('WP_ALLOW_REPAIR', true);
Once you have done that, you can see the settings by visiting this page: http://www.yoursite.com/wp-admin/maint/repair.php. Just make sure to replace yoursite.com with your own domain name.
Here, you must click the ‘Repair Database’ button to start the process.
Note: The user does not need to be logged in to access the database repair page. Once you are done repairing and optimizing your database, make sure to remove this line to code from your wp-config.php.
However, if you don’t want to add any code to your site, then you can also repair your database using your hosting account’s cPanel.
Go ahead and visit your hosting account, where you must open the ‘Websites’ page from the left column. Then, switch to the ‘Advanced’ tab and click the ‘Manage’ button in the Database section.
This will open cPanel in a new tab. Here, scroll down to the ‘Modify Databases’ section and choose your database’s name from the ‘Repair Database’ dropdown menu.
Once you do that, simply click the ‘Repair Database’ button to start the process.
The hosting panel will now automatically repair your database for you.
Once the process is complete, you will also see a success message.
You can now visit your WordPress site to see if the error has been resolved or not.
4. Check If Your Database Server Is Down
If everything seems to be correct, and WordPress still cannot connect to the database, then your database server (MySQL server) may be down.
This could happen due to heavy traffic on a server. Your host server just cannot handle the load (especially when you are on shared hosting).
Due to this, your site will get slow and may even output the error for some users. In this case, you should get on the phone call or live chat with your hosting provider and ask them if your MySQL server is responsive.
Additionally, if you have other websites running on the same server, then you can check those sites to confirm that your SQL server is down.
If you do not have any other site on the same hosting account, then simply go to your hosting dashboard and switch to the ‘Advanced’ tab.
After that, click the ‘Manage’ button next to the phpMyAdmin section.
This will open phpMyAdmin in a new window, where you must click the ‘Database’ option at the top.
After that, click on your database’s name to access its settings. If you can do that, then it is time for you to check if your database user has sufficient permissions.
To do this, you need to create a new file called testconnection.php and paste the following code into it:
<?php
$link = mysqli_connect('localhost', 'username', 'password');
if (!$link) {
die('Could not connect: ' . mysqli_error());
}
echo 'Connected successfully';
mysqli_close($link);
?>
Upon pasting the code, make sure to replace the username and password with your own. You can now upload this file to your website and access it via a web browser.
If the script connected successfully, then it means that your user has sufficient permissions, and something else is causing the error.
Now, you must go back to your wp-config file and scan it to ensure that all the details are accurate and without any typos.
Additional Solutions That Have Worked for Users
If the above-mentioned troubleshooting tips fail to fix the database connection error on your website, then you may try these additional steps.
As reported by our users, these steps have helped some of them resolve the database connection error on their websites.
1. Update the WordPress Site URL
You can try updating the WordPress site URL using phpMyAdmin in cPanel.
Simply access phpMyAdmin from your hosting account dashboard and select your WordPress database from the list.
After that, switch to the SQL menu on the top and enter the following MySQL query:
UPDATE wp_options SET option_value='YOUR_SITE_URL' WHERE option_name='siteurl'
It should look like this:
Don’t forget to provide your own site URL and change wp_options
to your own table name, as you may have changed the WordPress table prefix.
2. Rebooting Web Server
Users on dedicated servers, local servers, and virtual private servers (VPS) can try rebooting their servers.
This will restart your web and database server, which may fix some temporary glitches causing the error.
3. Ask For Help
If everything else fails, then you may need to contact your web hosting company. All good WordPress hosting companies will help you troubleshoot the problem, point you in the right direction, or even fix it for you.
You can also hire WordPress developers using a platform like WPBeginner Pro Services to help you fix this issue for reasonable rates. We have a dedicated team of expert developers that you can trust to resolve any of your WordPress issues.
You can also use the service for site maintenance, hacked site repair, speed optimization, website rebuilding, and SEO optimization.
We hope this article helped you fix the ‘Error establishing a database connection’ issue in WordPress. You may also want to see our WordPress troubleshooting guide for tips on resolving WordPress issues on your own or our tutorial on how to add a custom database error page in WordPress.
If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.
Bogdan
It helped me! Thanks a lot!
WPBeginner Support
You’re welcome, glad it was helpful!
Admin
Rajender Singh
Thank you very much for this tutorial. I have fixed one of my websites through this tutorial. I have been a reader of your website since 2018 and I was confident that I would find a solution to my problem on Wpbeginner.
WPBeginner Support
Glad to hear our guide was helpful!
Admin
Kzain
Thanks for a great guide never thought of it this way but are any of the problems related to caching plugins like Lite speed or wp-cache
WPBeginner Support
Normally this would not be a caching issue.
Admin
Mark
Cheers for the article and the great tips!
In my case I simply forgot to create a mysql user. Discovered by logging into mysql and scrolling back through the command line history with the up arrow…
“Hmmm something’s missing here….”.
Up and running in a jiffy!
WPBeginner Support
Glad to hear you found and solved the issue
Admin
Hajjalah
I used to get this error more often when I was logged into my admin dashboard for a longer period but this article helped me solve the issue. I just updated the WordPress Site URL. Thanks for the useful guide.
WPBeginner Support
You’re welcome, glad our guide was helpful!
Admin
Dennis Muthomi
I actually encountered this database connection error just recently when working on a staged WordPress site before going live.
I had just moved a WordPress site from local to a vps. The video tutorial at timestamp 2:53; helped me solve the error
WPBeginner Support
Glad our guide was able to help you
Admin
Jiří Vaněk
May I ask what the problem is, if I migrate the database to a new one, edit wp-config.php for the new connection, but wordpress does not connect? In the end, I had to delete the old wp-config and create new ones from the installation package. The only thing I found out was that the key stored in wp-config is probably a problem. Am I encrypting somehow connected to the DB and does it have to be removed from the wp-config file during the migration?
WPBeginner Support
You would want to ensure you have a user on that new database with the correct information that you have in your wp-config for the most common cause for that issue.
Admin
Raquel Lynn
Thank you!!! Your YouTube video worked perfectly, I repaired my site : )
WPBeginner Support
Great to hear!
Admin
Anoop
When i am importing demo Error establishing a database connection message is showing
WPBeginner Support
The steps in this guide should still be able to assist you and we would recommend reaching out to the support for the demo you are importing and they can look into what could be the root of the problem you are running into.
Admin
Eddy
Great video, great tutorial, excellent presentation. thanks a lot.
WPBeginner Support
You’re welcome, glad you liked our content!
Admin
Henrik R.
I need to change the password for the MySQL database for security reasons.
Isn’t there a way to login to the WP dashboard and tell WP about the new password, instead of having to change the wp-config.php file?
WPBeginner Support
There is not a simple alternative we would recommend at the moment.
Admin
Nwabufor John
I changed my WordPress database username and password would it affect my websites SEO?
WPBeginner Support
No, that should not affect your site’s SEO
Admin
Nwabufor John
Thank you, I was scared when it happened
varun kamath
Thank you so much
WPBeginner Support
Glad our guide was helpful
Admin
LN
First I would like to say thanks for this guide!
I am having an issue “Error establishing a database connection“ I have checked the wp-config.php and all the database information is correct. I wanted to try step 4 in this guide but I don’t really understand how. I logged in to phpMyAdmin, but not sure what the next step is. Do you have a video for that? I am not a developer just a new WP beginner.
WPBeginner Support
You would want to go to your hosting provider’s dashboard or reach out to your hosting provider and they should be able to assist.
Admin
IK
Thanks for this wonderful article. it has really helped me
WPBeginner Support
Glad our guide was helpful
Admin
Daniel
I almost have given up after having one issue after the other, till i read this. I had this feeling that “this is it” this is the solution I have been looking for. tried it and it worked perfectly, thanks a lot.
WPBeginner Support
Glad our guide was helpful
Admin
Paulo
In my case, as I use digital ocean, I had to restart the DROPLET
WPBeginner Support
Thanks for sharing what worked for you
Admin
Hrutik vijay kumthekar
I’m getting this error when entered the URL of my site:
There has been a critical error on your website.
WPBeginner Support
For that issue, you would want to take a look at our article below:
https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-wordpress-white-screen-of-death/
Admin
Arunya
Thank you very much This Article really helpful
WPBeginner Support
Glad you found our guide helpful
Admin
Sal
running out of space has done this to me a few times!
WPBeginner Support
Thanks for sharing that should someone else run into this issue
Admin
jennifer mulder
I am getting this error
Warning: mysqli_real_connect(): (HY000/2002): Connection refused in /home/f5853789/public_html/wp-includes/wp-db.php on line 1635
Connection refused
what do I do
WPBeginner Support
That is a different error, you would want to reach out to your hosting provider for assistance with that specific error.
Admin
Tejas Misra
I am a beginner to Wordpress, and I am using MAMP to install Wordpress but I’m still getting this error. My credentials are correct, and none of the steps shown above appeared to work. The database is repaired too. I don’t know what to do.
WPBeginner Support
Following our guide on setting up your site on MAMP below, you may want to ensure you added the correct database prefix.
https://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-locally-on-mac-using-mamp/
Admin
sain
Hi, I have just moved my WordPress site to a new hosting provider via ftp when this error popped up. Is there anything I’m to update after a migration? Thanks
WPBeginner Support
For moving to a new host, you would want to take a look at our article below:
https://www.wpbeginner.com/wp-tutorials/how-to-move-wordpress-to-a-new-host-or-server-with-no-downtime/
Admin
KWS Adams
Adding this line “””define(‘WP_ALLOW_REPAIR’, true);”” helped me get my site back after 14 hours of being down. Thought it was my hosts problem. Thanks for the info.
WPBeginner Support
You’re welcome, glad the recommendation was helpful
Admin
Maxine
Thanks! Step 1 worked for me.
WPBeginner Support
You’re welcome, glad our guide was able to help
Admin
Zubair Rahman
How to increase the connection limit in the MySQL database? My website is intermittently giving database error as it is exceeding the max connection limit allocated on the server.
WPBeginner Support
You would need to reach out to your hosting provider for changing that and they would be able to assist.
Admin
Agung Sudomo
I use google cloud as hosting and encounter this problem. What should I do?
WPBeginner Support
You should still be able to follow the steps in this article
Admin
Anita
Thank you so much for this! The solution for me was fixing url in sql. Thank you for the code!
WPBeginner Support
You’re welcome, glad our guide could be helpful
Admin
Nimra afridi
I have installed a wordpress . i also make post but sometime it shows me that ”please install wordpress”. Why it showing me that?
Thank you.
WPBeginner Support
There are a few possible reasons, you may want to reach out to your hosting provider to ensure there are no hiccups on their end.
Admin
alex
my website is hosted on aws and i accessed the MYSQL folder via filezila but i couldn’t find the file that contains database username , password and hostname. is there any specific name of that file?
WPBeginner Support
The file with that information would be your wp-config.php file
Admin
Chuck Whelon
Very helpful thank you.
WPBeginner Support
You’re welcome
Admin
Deborah N.
Thanks. Adding the repair code to my wp config file worked. I appreciate the article. It was straight forward and easy to follow.
WPBeginner Support
You’re welcome, glad our recommendation was helpful
Admin
bloggeryanke
your article was helpful i had changed my database password so it wasnt connecting to my blog properly but all thanks to your article the issue has been fixed
WPBeginner Support
Glad our recommendations could help
Admin
Joe Marzi
Thank you for sharing such a nice blog.
It will help the beginners of WordPress who are facing the problem regarding Error Establishing in the database connection. Apart from that, It gives a step by step solution so, every reader can easily solve the problem.
WPBeginner Support
You’re welcome, glad our articles can be helpful
Admin
Deepak
Thanks for such amazing information. I really liked your article.
WPBeginner Support
You’re welcome, glad you liked our article
Admin
Irwin
I got this error after forcefully shutting my computer. After trying all these suggested methods and failing, I rebooted my computer and the database error was fixed.
You should give it a try too if things go south.
WPBeginner Support
Thanks for sharing the solution that worked for you
Admin
Erik
Awesome! Very easy to follow and took minutes to solve.
WPBeginner Support
Glad our guide could be helpful
Admin
Bob
Yet again you guys come to my rescue. Fixed in a couple of minutes. Well done.
WPBeginner Support
Glad our guide could help
Admin
Nick Aninsley
Thank you so much for sharing this tutorial. Actually, had installed WordPress, it shows me “Error Establishing A Database Connection” and I don’t know what to do. Then I have searched on Google and I found your this article and really it is
very helpful for me and also many people who have no idea about this things. and my site were facing many other problems and only one of them has been solved. Thank for article.
WPBeginner Support
Glad our article could help
Admin
Emily
I can’t back up my site or do any of what you suggest, because I cannot get into the administrative section of my blog. I can view it, as a viewer, but I have no access to anything more. I also cannot find anyway to contact people from wordpress! Help!?!!
WPBeginner Support
You should be able to create a manual backup using the method here: https://www.wpbeginner.com/beginners-guide/how-to-make-a-wordpress-database-backup-manually/
If you reach out to your hosting provider they should be able to assist with getting you access back to your site
Admin
Waqas Gulzar
Guys,
I have fixed it now for my website
It was due to insufficient PHP memory
I have updated my php.ini to increase the PHP memory
WPBeginner Support
Thanks for sharing the solution that worked for you
Admin
pushkar
Hi WAQAS,
can you please advice how you updated my php.ini to increase the PHP memory. My Site is down with the error “Error Establishing A Database Connection” and i suspect it is also to do with memory.
WPBeginner Support
We have a guide you can follow here: https://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/
Admin
ken
I’m on BlueHost and just upgraded to WP 5.2 and got the dreaded error message:
“Your PHP installation appears to be missing the MySQL extension which is required by WordPress.”
I tried with PHP 5.6, 7.0 & 7.1 – all give the same response. Any ideas what I can try? My site is completely blocked by the error.
WPBeginner Support
If you reach out to BlueHost they should be able to resolve that issue for you
Admin