• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

FTP passwords

B

bartdaniels

Guest
Hi Guys,

I know its possible within windows to get the Plesk Admin password. But is it possible to obtain FTP Passwords?

I can do this within linux not an issue, but windows being windows...

Any help would be appreciated.

Cheers
 
Hello,

The FTP passwords can be found in Parallels Plesk Panel (PP) database with the help of the following queries:

1) Find the FTP login account id:

mysql> select login,account_id from sys_users where login like '%testftp%';
+---------+------------+
| login | account_id |
+---------+------------+
| testftp | 13 |
+---------+------------+
1 row in set (0.00 sec)

2) Find the password for the account:

mysql> select id,password from accounts where id=13;
+----+----------+
| id | password |
+----+----------+
| 13 | 123qwe |
+----+----------+
1 row in set (0.00 sec)

Thank you
 
Hi Nataliya,

Thank-you for that, however what is the username/password within Windows VPS to access the MySQL locally?
I have tried admin and the Plesk Password, as it is that for the Linux versions.

Any suggestions?

Thanks
Bart
 
You can access Plesk 's MySQL in this way:
> cd %plesk_dir%\mysql\bin
> mysql -uadmin -p'plesk_admin_password' -P8306
 
Hi Satoriya,

It seems that within Plesk 8.x the usernames and passwords are kept in an Access Database, not MySQL.

I have attached a simple VB program i made to get Plesk Username/passwords and FTP username/passwords from the database.

Seems to work well.

It will require .Net 3.5 to be installed on the VPS, as it was created with VB 2008.

Thanks
Bart
 

Attachments

  • PSAGetPassword-New.zip
    22.1 KB · Views: 0
Back
Top