解決nginx: [emerg] unknown directive “stream“ in /etc/nginx/nginx.conf問題
問題原因
[root@k8s-node2 ~]# cat /etc/nginx/nginx.conf stream { upstream kube-apiserver { server 192.168.10.64:6443 max_fails=3 fail_timeout=30s; server 192.168.10.65:6443 max_fails=3 fail_timeout=30s; } server { listen 7443; proxy_connect_timeout 2s; proxy_timeout 900s; proxy_pass kube-apiserver; } }
解決方法
# 安裝nginx源 curl -o /etc/yum.repos.d/epel.repo # 先安裝 yum -y install epel-release #應該是缺少modules模組 yum -y install nginx-all-modules.noarch 然後在用nginx -t就好了 [root@k8s-node2 ~]# nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70003733/viewspace-2887586/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- windows 中nginx奇葩報錯 nginx: [emerg] unknown directive "#" in nginx/conf/nginx.conf:3WindowsNginx
- nginx: [emerg] "user" directive is not allowed here in /etc/nginx/conf.d/nginx.conf:1Nginx
- /etc/nginx/nginx.conf配置檔案詳解Nginx
- nginx 啟動報錯 unknown directive "server"NginxServer
- Nginx 中 nginx.conf 詳解Nginx
- Nginx 配置檔案 nginx.conf 詳解Nginx
- 詳解nginx伺服器的nginx.conf 中 root目錄設定問題Nginx伺服器
- Nginx 配置檔案 nginx.conf 中文詳解Nginx
- Nginx配置檔案nginx.conf中文詳解Nginx
- 附:Nginx配置檔案nginx.conf中文詳解Nginx
- Nginx配置檔案nginx.conf中文詳解(轉)Nginx
- Nginx配置檔案nginx.conf中文詳解(總結)Nginx
- 啟動nginx服務提示 nginx: [emerg] still could notNginx
- nginx簡易使用教程,使用nginx解決跨域問題Nginx跨域
- nginx.conf 配置檔案詳解Nginx
- 解決nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)NginxAI
- nginx 解決圖片跨域問題Nginx跨域
- Nginx跨域的問題解決方案Nginx跨域
- nginx 直播程式數問題(待解決)Nginx
- php、apache、nginx解決跨域問題PHPApacheNginx跨域
- nginx /Java 解決跨域問題方案NginxJava跨域
- Nginx伺服器配置檔案nginx.conf例項詳解Nginx伺服器
- nginx FastCGI錯誤Primary script unknown解決辦法NginxAST
- 解決Ubuntu配置nginx出現的問題UbuntuNginx
- 跨域問題,解決方案 - Nginx反向代理跨域Nginx
- 使用Nginx來解決跨域的問題Nginx跨域
- nginx fastcgi 超時問題解決記錄NginxAST
- Nginx官方推薦的nginx.conf標準配置Nginx
- 從執行中的nginx 中找到nginx.confNginx
- Nginx解決前端訪問資源跨域問題Nginx前端跨域
- Nginx 配置 Vue 專案解決跨域問題NginxVue跨域
- nginx部署後常見問題解決辦法Nginx
- Nginx基礎02:配置檔案nginx.conf(Part1)Nginx
- Nginx的nginx.conf配置檔案中文註釋說明Nginx
- [轉]Nginx 配置檔案nginx.conf的完整配置說明Nginx
- Nginx配置解決NetCore的跨域NginxNetCore跨域
- Nginx解決前端跨域問題 CORS跨域配置Nginx前端跨域CORS
- 一次 nginx 返回 302 問題解決Nginx