nginx如何用shell取得測試結果
習慣沉默
習慣沉默 2017-05-16 17:15:34
0
1
691

想寫一個自動腳本
先測試產生的設定檔

/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/test.conf

如果測試成功就覆蓋nginx.conf 不成功就回傳錯誤

然而不知道如何取得執行測試指令之後的資訊 指令都是執行成功

習慣沉默
習慣沉默

全部回覆(1)
黄舟
[root@arbiter nginx]# /usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@arbiter nginx]# echo $?
0

[root@arbiter nginx]# /usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/mime.types
nginx: [emerg] "types" directive is not allowed here in /usr/local/nginx/conf/mime.types:2
nginx: configuration file /usr/local/nginx/conf/mime.types test failed
[root@arbiter nginx]# echo $?
1

bash 中 $? 用來取得上一條指令的回傳值,0 為正常,其他值為異常。

如果需要取得命令輸出,可以按一下方式操作:

[root@arbiter nginx]# a="`/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/mime.types 2>&1`"
[root@arbiter nginx]# echo $a
nginx: [emerg] "types" directive is not allowed here in /usr/local/nginx/conf/mime.types:2 nginx: configuration file /usr/local/nginx/conf/mime.types test failed

其中2>&1的作用是將標準誤差重新導向到標準輸出

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!