• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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