#指向到网站目录
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 &