yum安装nginx报错解决nginx: [emerg] unknown directive “stream“ in /etc/nginx/nginx.conf问题【转】

2022/9/6 5:24:17

本文主要是介绍yum安装nginx报错解决nginx: [emerg] unknown directive “stream“ in /etc/nginx/nginx.conf问题【转】,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

yum安装nginx,其中看nginx有stream参数,但是nginx -t是报错“nginx: [emerg] unknown directive “stream“ in /etc/nginx/nginx.conf问题”

 

 解决办法

# 安装nginx源
curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.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

转自

(40条消息) 解决nginx: [emerg] unknown directive “stream“ in /etc/nginx/nginx.conf问题_一个不专业的码农的博客-CSDN博客
https://blog.csdn.net/weixin_45858439/article/details/122215639

 



这篇关于yum安装nginx报错解决nginx: [emerg] unknown directive “stream“ in /etc/nginx/nginx.conf问题【转】的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程