nginx預設安裝的時候無法加載流stream子產品,需要在啟動參數裡加上–with-stream。
解決方法:
重新對源檔案進行編譯、安裝,通過添加–with-stream參數指定安裝stream子產品。
[root@localhost nginx-1.12.2]# ./configure --with-stream
[root@localhost nginx-1.12.2]# make & make install
1
2
再次檢查nginx.conf配置檔案,确認配置無文法錯誤後,再次嘗試啟動服務。
[root@localhost sbin]# ./nginx
這個時候就可以啟動成功了。