【yum 安装最新版nginx:https://www.jianshu.com/p/a2de35ee5283】
在安装nginx前首先要确认系统中安装了**gcc、pcre-devel、zlib-devel、openssl-devel**
。
Linux下检查是否安装过某软件包:https://www.jianshu.com/p/356c2d9deff1
安装命令:
1 | yum -y install gcc pcre-devel zlib-devel openssl openssl-devel |
nginx下载地址:https://nginx.org/download/
下载“nginx-1.18.0.tar.gz”,移动到/usr/local/下。
1 | ## 解压 |
OK,现在可以执行make 了。
执行make、make install命令
测试是否安装成功
1 | # cd到刚才配置的安装目录 |
**错误信息**
:
1 | nginx: [alert] could not open error log file: open() "/usr/local/nginx/logs/error.log" failed (2: No such file or directory) |
原因分析:nginx/目录下没有logs文件夹
**解决方法**
:
1 | mkdir logs |
正常情况的信息输出:
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
启动nginx
1 | cd /usr/local/nginx/sbin |
在浏览器中输入服务器的ip地址,如:http://localhost
##问题排查:
服务器的80端口是打不开的。
因为我使用的linux系统版本是CentOS7,所以可以在服务器中执行如下命令来验证
1 | firewall-cmd --query-port=80/tcp |
显然80端口没有开启。
下面我们开启80端口:
1 | firewall-cmd --add-port=80/tcp --permanent |
–permanent #永久生效,没有此参数重启后失效
刷新浏览器
====================== 分割线 ====================
配置完毕!
2、配置nginx开机自启动
1 | vim /etc/rc.d/rc.local</pre> |