• 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!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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.

Resolved Bulk change main FTP account passwords

Steve Tozer

Basic Pleskian
Hello,

Wondering if anyone can help, Im looking to mass change all the main ftp account passwords for all the domains. To a preset one.

Have tried using the "Plesk Mass Password Reset Script" but you don't seem to be able to do this via the script only if you want a random password.

Wondering if anyone has magic mysql command to do this.

Have looked around the forum and was unable to find anything.


Thanks
 
If you know all the ftp userids you can use the command line interface. Safer than messing with the configuration database.

https://docs.plesk.com/en-US/onyx/c.../ftpsubaccount-additional-ftp-accounts.64417/

e.g. plesk bin ftpsubaccount --update JohnDoe -passwd newpass

It would be trivial to write a scritp to repeat that for multiple userids.

Similar command available for Windows.
Hello

Thanks for the reply, I don't have all the account usernames as there are over 150 domains on the server :) was looking to change just all the main domain ftp account passwords to the same, was thinking the database would be the only way to go for this

Thanks

Steve
 
I think I'd still prefer to use the command line. Assuming you're on Linux, how about...


plesk bin subscription -l|while read SUB
> do
> plesk bin subscription --update $SUB -passwd MyNewPassword
> done
 
Back
Top