From 38e7e69c0b0db058fc6e7e3d546d3d4036b082eb Mon Sep 17 00:00:00 2001 From: Yun Huang Date: Sat, 24 Mar 2018 00:28:34 +0800 Subject: Integrate uwsgi with django To enable parallel processing of framework services Change-Id: I3142c2ea742918027e7f397b6fe9aece329788a5 Issue-ID: MULTICLOUD-187 Signed-off-by: Yun Huang --- multivimbroker/stop.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'multivimbroker/stop.sh') diff --git a/multivimbroker/stop.sh b/multivimbroker/stop.sh index 4a2e5c3..ba0a2c8 100755 --- a/multivimbroker/stop.sh +++ b/multivimbroker/stop.sh @@ -11,4 +11,5 @@ # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -ps auxww | grep 'manage.py runserver 0.0.0.0:9001' | awk '{print $2}' | xargs kill -9 +# ps auxww | grep 'manage.py runserver 0.0.0.0:9001' | awk '{print $2}' | xargs kill -9 +ps auxww |grep 'uwsgi --http :9001 --module multivimbroker.wsgi --master' |awk '{print $2}' |xargs kill -9 -- cgit 1.2.3-korg