• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

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