diff options
author | yangyan <yangyanyj@chinamobile.com> | 2019-04-11 10:38:15 +0800 |
---|---|---|
committer | Yan Yang <yangyanyj@chinamobile.com> | 2019-04-11 02:39:20 +0000 |
commit | 0259dc517346df30f8f8ac1f71610419ac720716 (patch) | |
tree | 63ec29ec8f3abed52e1268611c9eeabf541ea275 /mgr/stop.sh | |
parent | 98d719f527ccc25ccab44916a54f654c462054ba (diff) |
Add https support for project
Change-Id: I9ca183381c5b1df0290e837ac1dd59e0ac0b6b2d
Issue-ID: VFC-1342
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
Diffstat (limited to 'mgr/stop.sh')
-rwxr-xr-x | mgr/stop.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mgr/stop.sh b/mgr/stop.sh index 6a18e20..1c41bf7 100755 --- a/mgr/stop.sh +++ b/mgr/stop.sh @@ -13,4 +13,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -ps auxww | grep 'manage.py runserver 0.0.0.0:8803' | awk '{print $2}' | xargs kill -9 +# ps auxww | grep 'manage.py runserver 0.0.0.0:8803' | awk '{print $2}' | xargs kill -9 +ps auxww |grep 'uwsgi --http :8803 --module mgr.wsgi --master' |awk '{print $2}' |xargs kill -9 |