diff options
Diffstat (limited to 'newton/stop.sh')
-rwxr-xr-x | newton/stop.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/newton/stop.sh b/newton/stop.sh index f743bf97..506d9965 100755 --- a/newton/stop.sh +++ b/newton/stop.sh @@ -13,5 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -ps auxww | grep 'manage.py runserver 0.0.0.0:9003' | awk '{print $2}' | xargs kill -9 +#ps auxww | grep 'manage.py runserver 0.0.0.0:9003' | awk '{print $2}' | xargs kill -9 +ps auxww |grep 'uwsgi --http :9003 --module newton.wsgi --master' |awk '{print $2}' |xargs kill -9 ps auxww | grep 'memcached -d -m 2048 -u root -c 1024 -p 11211 -P /tmp/memcached1.pid' | awk '{print $2}' | xargs kill -9 |