fix run script
This commit is contained in:
parent
0969937fd1
commit
2388802e3f
6 changed files with 6 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
cd `dirname $0`
|
||||
python_ver=$(ls /usr/lib|grep "^python"|tail -1)
|
||||
python_ver=$(ls /usr/bin|grep -e "^python[23]\.[1-9]\+$"|tail -1)
|
||||
eval $(ps -ef | grep "[0-9] ${python_ver} server\\.py m" | awk '{print "kill "$2}')
|
||||
ulimit -n 512000
|
||||
nohup ${python_ver} server.py m>> ssserver.log 2>&1 &
|
||||
|
|
2
run.sh
2
run.sh
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
cd `dirname $0`
|
||||
python_ver=$(ls /usr/lib|grep "^python"|tail -1)
|
||||
python_ver=$(ls /usr/bin|grep -e "^python[23]\.[1-9]\+$"|tail -1)
|
||||
eval $(ps -ef | grep "[0-9] ${python_ver} server\\.py m" | awk '{print "kill "$2}')
|
||||
ulimit -n 512000
|
||||
nohup ${python_ver} server.py m>> /dev/null 2>&1 &
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
cd `dirname $0`
|
||||
python_ver=$(ls /usr/lib|grep "^python"|tail -1)
|
||||
python_ver=$(ls /usr/bin|grep -e "^python[23]\.[1-9]\+$"|tail -1)
|
||||
eval $(ps -ef | grep "[0-9] ${python_ver} server\\.py a" | awk '{print "kill "$2}')
|
||||
ulimit -n 512000
|
||||
nohup ${python_ver} server.py a>> ssserver.log 2>&1 &
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
cd `dirname $0`
|
||||
python_ver=$(ls /usr/lib|grep "^python"|tail -1)
|
||||
python_ver=$(ls /usr/bin|grep -e "^python[23]\.[1-9]\+$"|tail -1)
|
||||
eval $(ps -ef | grep "[0-9] ${python_ver} server\\.py a" | awk '{print "kill "$2}')
|
||||
ulimit -n 512000
|
||||
nohup ${python_ver} server.py a>> /dev/null 2>&1 &
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
python_ver=$(ls /usr/lib|grep "^python"|tail -1)
|
||||
python_ver=$(ls /usr/bin|grep -e "^python[23]\.[1-9]\+$"|tail -1)
|
||||
eval $(ps -ef | grep "[0-9] ${python_ver} server\\.py a" | awk '{print "kill "$2}')
|
||||
|
||||
|
|
2
stop.sh
2
stop.sh
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
python_ver=$(ls /usr/lib|grep "^python"|tail -1)
|
||||
python_ver=$(ls /usr/bin|grep -e "^python[23]\.[1-9]\+$"|tail -1)
|
||||
eval $(ps -ef | grep "[0-9] ${python_ver} server\\.py m" | awk '{print "kill "$2}')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue