Admin-Ahead Community

Windows => Control Panels => Plesk => Topic started by: lijeshk on November 21, 2013, 03:10:07 am

Title: How to Reset admin password in Windows Plesk?
Post by: lijeshk on November 21, 2013, 03:10:07 am

The Plesk admin password can simply be reset by login to VPS using RDP with following command:

Code: [Select]
%plesk_bin%\plesksrvclient.exe
Just run the command and it will ask for new admin password. If it also shows the message that Access denied/can’t connect to MySQL then:

The following command can be used to retrieve the Plesk admin password from the database to verify that the password has been successfully updated in Plesk system database:

Code: [Select]
%plesk_bin%\plesksrvclient.exe -get
If Plesk admin password is not updated, then we can manually update it by do the following steps:

Code: [Select]
%plesk_dir%\mysql\bin\mysql.exe -P8306 mysql
Code: [Select]
mysql> update mysql.user set password=password(‘NEWPASSWORD’) where user=’admin’;
--