• 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

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