I have installed phpmyadmin in my centos8 droplet, and created an db cluster with same private network, I could connect db cluster through centos8 droplet terminal, however, I couldn’t use phpmyadmin to connect the db cluster.
I am using a “Legacy – MySQL 5.x” user to connect, and I have the following in my config.inc.php:
$i++; $cfg[‘Servers’][$i][‘host’] = ‘private-db01-xxxxxx.ondigitalocean.com’;
How make this work? What am I missing? Thanks
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Hi there,
In your PHPmyAdmin config, you need to also specify the database port as the Managed Databases run on a non-standard port.
Another thing that could be causing the problem is if you’ve installed PHPmyAdmin with
apt install phpmyadmin
, as this installs a very old version of PHPmyAdmin which is not compatible with the latest MySQL version.Instead, you could install PHPmyAdmin manually and get the latest version:
https://www.digitalocean.com/community/questions/how-to-install-manually-phpmyadmin-on-ubuntu
Let me know how it goes. Regards, Bobby