Hi,
Plesk uses two MySQL servers. One for clients databases (port 3306) and second server for Plesk databases (8306). You can connect to Plesk DB using the following command:
%plesk_dir%\mysql\bin\mysql.exe -uadmin -pPlesk_admin_passwd -P8306 or
C:\Program Files\Parallels\Plesk\Databases\MySQL\bin\mysql.exe” -uadmin -pPlesk-admin_passwd -P8306
===================>>>
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 990 to server version: 4.1.22-community-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> show databases;
+----------+
| Database |
+----------+
| apsc |
| mysql |
| psa |
| test |
+----------+
4 rows in set (0.00 sec)
mysql>
===================>>>
Thank you,