• 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!
  • 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.

websrvmng arguments

S

StuB

Guest
What arguments can go with websrvmng?

So far I have discovered:
websrvmng.exe --remove-vhost --vhost-name=DOMAIN.COM
websrvmng.exe --reconfigure-vhost --vhost-name=DOMAIN.COM
websrvmng.exe -u --vhost-name=DOMAIN.COM

Is there are way to list which domains are hosted (like this)?
And what does reconfigure do?
Are there any other commands/arguments?
Thanks
 
Hello,

The list of the domains can be obtained from the database:

1. Log into the Parallels Plesk Panel (PP) database:
# mysql -uadmin -p`cat /etc/psa/.psa.shadow

2. Execute the following query to get the listr of domains:
> select id,name,status from domains;

The command with the --reconfigure-vhost option performs reconfiguration for one given host - removes it and recreates from the database and configuration files.

The full list of the options for websrvmng can be received with the --help option:

/usr/local/psa/admin/sbin/websrvmng --help

Thank you
 
Back
Top