• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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