• We value your experience with Plesk during 2025
    Plesk strives to perform even better in 2026. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2025.
    Please take this short survey:

    https://survey.webpros.com/

How to find out all username and password

yatint

Basic Pleskian
Hello,

I am using windows server 2008 r2. Please 10.4. Please let me know how can I find out login details of all accounts . I want to migrate all my domains but facing some problem. so I am planning to create all accounts manually.

Waiting for your reply.
 
Hello,

I am trying this query to find all username and password :

SELECT domains.name AS domain_name,
data_bases.name AS database_name, db_users.login, accounts.password
FROM data_bases, db_users, domains, accounts
WHERE data_bases.dom_id = domains.id
AND db_users.db_id = data_bases.id
AND db_users.account_id = accounts.id
ORDER BY domain_name;

But password is in sym format. is there any way to convert in plain text ?
+
 
Back
Top