• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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