diff options
author | fujinhua <fu.jinhua@zte.com.cn> | 2019-05-07 09:05:57 +0800 |
---|---|---|
committer | fujinhua <fu.jinhua@zte.com.cn> | 2019-05-07 09:05:57 +0800 |
commit | 62e9f2377df970d2801b491a624ed12b84c6383c (patch) | |
tree | 75b268ea2697635cad5ad9c75ddb869fd140a100 | |
parent | a79bcb09b9dfc9e49e5d89efd80257024b737fb2 (diff) |
Fix bug for catalog stop sh
Change-Id: Ie5feaad95f3e6f6505b41e892c183684854bb4da
Issue-ID: VFC-1306
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
-rwxr-xr-x | stop.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,4 +14,4 @@ # limitations under the License. # ps auxww | grep "manage.py runserver 0.0.0.0:8806" | awk '{print $2}' | xargs kill -9 -ps auxww |grep 'uwsgi --http :8806 --module lcm.wsgi --master' |awk '{print $2}' |xargs kill -9 +ps auxww |grep 'uwsgi --http' |awk '{print $1}' |xargs kill -9 |