From 375948c1dc72df891811077e1f70a1f3869c8c0b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 22 Nov 2016 22:25:15 -0400 Subject: [PATCH] Add step to enable the supervisor service. Ubuntu bug report: https://bugs.launchpad.net/ubuntu/+source/supervisor/+bug/1594740 Update nginx restart command to use systemctl too. --- docs/topics/deploying.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/topics/deploying.rst b/docs/topics/deploying.rst index 227998700e..e9dccbb704 100644 --- a/docs/topics/deploying.rst +++ b/docs/topics/deploying.rst @@ -196,8 +196,9 @@ Make the installation directory readable and writable by the webserver user:: Restart the services:: - /etc/init.d/nginx restart - /etc/init.d/supervisor restart + systemctl enable supervisor + systemctl restart supervisor + systemctl restart nginx Docker method =============