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

Websites offline when adding a new domain

miagalo

New Pleskian
Hi,

I noticed that after adding a new domain name, the other sites are offline for a few seconds (maybe because plesk restart apach) do you have any idea to patch this problem ?


Best regards


----------------------

Edit : I found the solution http://kb.parallels.com/112020
 
Last edited:
Great, just for the SEO,

You need to enable graceful restart, you should add the parameter "restart_apache_gracefully" with a "true" value to the "misc" table of the "psa" database. It can be done by the following SQL query:

Code:
mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa
INSERT INTO misc VALUES ('restart_apache_gracefully', 'true');
 
Back
Top