• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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