1. 程式人生 > >linux 開啟程序,nohup後臺執行指令碼等

linux 開啟程序,nohup後臺執行指令碼等

1.在伺服器未配置php環境變數的情況下,linux要開啟web目錄下的server.php程序
例如:

    cd /home/wwwroot/LNMP02/domain/duoduo1.shupai.xyz/web
    /usr/local/php-7.0/bin/php server.php start -d  //開啟守護程序

2.後臺要執行.sh指令碼
get_update.sh指令碼內容如下:

while [ true ] ;do
curl 'http://duoduo.shupai.xyz/api.php/Lotteryresult/get_stoptime?type=3' >> /dev/
null 2>&1; curl 'http://duoduo.shupai.xyz/api.php/Lotteryresult/get_stoptime?type=2' >> /dev/null 2>&1; curl 'http://duoduo.shupai.xyz/api.php/Lotteryresult/get_stoptime?type=1' >> /dev/null 2>&1; curl 'http://duoduo.shupai.xyz/api.php/Sdcupdate/update_lottery_1' >> /dev/null 2>&1
; curl 'http://duoduo.shupai.xyz/api.php/Sdcupdate/update_lottery_2' >> /dev/null 2>&1; curl 'http://duoduo.shupai.xyz/api.php/Sdcupdate/update_lottery_3' >> /dev/null 2>&1; sleep 6s; done;

找到需要執行的指令碼檔案,後臺執行指令碼

cd /home/wwwroot/LNMP02/shell
nohup ./get_update.sh >> /dev/null 2>&1