解決nginx: [emerg] unknown directive “stream“ in /etc/nginx/nginx.conf問題

哈哈哈hh發表於2022-04-18

映象下載、域名解析、時間同步請點選  阿里雲開源映象站

問題原因

在nginx中增加了這個配置

[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 -t報錯

file

解決方法

# 安裝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

本文轉自:https://blog.csdn.net/weixin_45858439/article/details/122215639


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70003733/viewspace-2887586/,如需轉載,請註明出處,否則將追究法律責任。

相關文章