• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

MySql - Server name

E

edwardr

Guest
Hi there,

I had installed Plesk 7.5 for Windows. Everything works fine, but suddendly I had a problem with login in MySql-Database

under Server > Database administrator's credentials and tools:
There is the possibilty to login with phpMyAdmin

ConnectionServer name * :
(Name for the server cannot be changed.: There is at least one database on the server.)
Login and Password

and suddendly the server name localhost and a number I think 3445 dissapperad and I'm not able to insert it, and that's why I'm not able to access to my database with phpmyadmin.

Please can somebody tell me how to insert it again?

thx
edward
 
Ive just developed the same problem.

It started the moment i clicked on Root Web Admin.

Dan
 
for windows:

cmd
cd %plesk_dir%\mysql\bin
mysql -uadmin -p<admin_passwd> -P8306 psa
mysql> update misc set val='localhost' where param='mysql_data_source';
mysql> update misc set val='3306' where param='mysql_port';

then it should work again,... :)
 
Back
Top