• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Retrieving Domain/Client Passwords

T

troy.porter

Guest
can anyone help me out with a query that i can use to retrieve my clients' domain FTP passwords

...and also one to retrieve thier plesk admin password (client password)


i am running PLESK 7.1


thanks much!!!


PS. I know about Powertools but i dont want to have to install anything..i just need the passwords
 
make a script for eg "my_users.sh"

and put this inside :

echo "select d.name, c.login, a.password from accounts a, clients c, domains d where a.id=c.account_id and d. cl_id=c.id order by d.name, c.login;" | mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa


Then run :
./users.sh |grep domain.tld

I hope it will work for you cause it works for me!
 
Originally posted by ZaNaToS
make a script for eg "my_users.sh"

and put this inside :

echo "select d.name, c.login, a.password from accounts a, clients c, domains d where a.id=c.account_id and d. cl_id=c.id order by d.name, c.login;" | mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa


Then run :
./users.sh |grep domain.tld

I hope it will work for you cause it works for me!


this works fine...but what about a query for the FTP passwords also.....and even the mail names as well???

thank you in advance...
 
hey can someone plzzzz help me out...i still urgently need the query to get the FTP passwords and the mailname passwrds!!!
 
Back
Top