mirror of
https://github.com/coolsnowwolf/luci.git
synced 2025-05-04 00:00:57 +08:00
9 lines
251 B
Bash
Executable File
9 lines
251 B
Bash
Executable File
#!/bin/bash
|
|
cd `dirname $0`
|
|
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 &
|
|
|
|
|