#指向到網站目錄
cd /data/www/
#定時任務
su nobody -s /usr/local/bin/php think timer start >/dev/null &
#隊列
ps -ef|grep "think queue:listen"|grep -vq "grep" || (su nobody -s /usr/local/bin/php think queue:listen >/dev/null 2>&1) &
#長連接服務
su nobody -s /usr/local/bin/php think workerman start >/dev/null &