1. 程式人生 > >unknown directive “stream” in /usr/local/nginx

unknown directive “stream” in /usr/local/nginx

nginx預設安裝的時候無法載入流stream模組,需要早啟動引數里加上–with-stream。

解決方法:
重新對原始檔進行編譯、安裝,通過新增–with-stream引數指定安裝stream模組。

[[email protected] nginx-1.12.2]# ./configure --with-stream
[[email protected] nginx-1.12.2]# make & make install

再次檢查nginx.conf配置檔案,確認配置無語法錯誤後,再次嘗試啟動服務。

[[email protected]
sbin]# ./nginx

這個時候就可以啟動成功了。