From 0590e95f40bc553c23fb2b7b211f032ed0a7d70e Mon Sep 17 00:00:00 2001 From: Pranav Salunke Date: Tue, 21 Apr 2015 16:41:11 +0200 Subject: [PATCH] Change apache service to restart After fixing the apache service issue with Ubuntu14.04, restart command should work better that manual stop/start. While stopping and starting a service using scripts, it can sometimes be too fast to give time to the service to respond properly and cause error status and more races. Change-Id: I84b2271f07a10ce1a29403312736272221895c35 --- labs/scripts/setup_lbaas_controller.sh | 3 +-- labs/scripts/ubuntu/setup_horizon.sh | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/labs/scripts/setup_lbaas_controller.sh b/labs/scripts/setup_lbaas_controller.sh index 4dee05a6..c0629c8a 100755 --- a/labs/scripts/setup_lbaas_controller.sh +++ b/labs/scripts/setup_lbaas_controller.sh @@ -37,6 +37,5 @@ echo "Checking dashboard configuration." check_dashboard_settings echo "Reloading apache and memcached service." -sudo service apache2 stop -sudo service apache2 start +sudo service apache2 restart sudo service memcached restart diff --git a/labs/scripts/ubuntu/setup_horizon.sh b/labs/scripts/ubuntu/setup_horizon.sh index d7d52588..2ba1cfe8 100755 --- a/labs/scripts/ubuntu/setup_horizon.sh +++ b/labs/scripts/ubuntu/setup_horizon.sh @@ -54,6 +54,5 @@ echo "Checking dashboard configuration." check_dashboard_settings echo "Reloading apache and memcached service." -sudo service apache2 stop -sudo service apache2 start +sudo service apache2 restart sudo service memcached restart