• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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