• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.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