i have created a managed mysql database, i have a hosting account and upload the phpmyadmin and set the config.inc.php as follows
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'db-mysql-blr1-63272-do-user-4986520-0.b.db.ondigitalocean.com';
$cfg['Servers'][$i]['port'] = '25060';
$cfg['Servers'][$i]['ssl'] = true;
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = false;
Then i opened the phpmyadmin and i give the username and password for the defaultdb, but i got the following error.
Cannot log in to the MySQL server mysqli::real_connect(): (HY000/2002): Connection refused
i tried with all ways but i cant login to view my database. my hosting is running on php 7.4, even i tried with php 8.0 but getting the same error. Anybody help please.
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.
Hello,
There are a couple of things that I could suggest:
https://www.digitalocean.com/community/questions/how-to-install-manually-phpmyadmin-on-ubuntu
https://docs.digitalocean.com/products/databases/mysql/how-to/secure/
Let me know how it goes!
Best,
Bobby