Centos在线、离线安装Nginx

转载至: www.cnblogs.com/chenwolong/...

在CentOS 7中安装Nginx。

当使用以下命令安装Nginx时,发现无法安装成功。

如果出现没有可用软件包\]需要做一点处理。 ## 安装Nginx源 执行以下命令: ```bash rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm ``` 安装该rpm后,我们就能在`/etc/yum.repos.d/` 目录中看到一个名为`nginx.repo` 的文件。 ## 安装Nginx 安装完Nginx源后,就可以正式安装Nginx了。 ## Nginx默认目录 输入命令: 即可看到类似于如下的内容: ```bash nginx: /usr/sbin/nginx /usr/lib64/nginx /etc/nginx /usr/share/nginx ``` 以下是Nginx的默认路径: (1) Nginx配置路径:/etc/nginx/ (2) PID目录:/var/run/nginx.pid (3) 错误日志:/var/log/nginx/error.log (4) 访问日志:/var/log/nginx/access.log (5) 默认站点目录:/usr/share/nginx/html 事实上,只需知道Nginx配置路径,其他路径均可在`/etc/nginx/nginx.conf` 以及`/etc/nginx/conf.d/default.conf` 中查询到。 ## 2、通过压缩包进行安装 1、下载安装包 [nginx.org/en/download...](https://link.juejin.cn?target=https%3A%2F%2Fnginx.org%2Fen%2Fdownload.html "https://nginx.org/en/download.html") ![](https://file.jishuzhan.net/article/1735216216273850370/3d04bd3d4dc917c1308a50aea24016c8.webp) 右键,复制链接地址,在liunx中使用 wget获取【我是在 root 根目录下执行的下载,他会下载到root目录下】 ![](https://file.jishuzhan.net/article/1735216216273850370/e1a4afe6356531e1c9fc18f94f385d05.webp) 2、解压缩【我将压缩文件剪贴到了 /root/share/nginx目录下】 ![复制代码](https://file.jishuzhan.net/article/1735216216273850370/43ff3abc5d3683fc66d1c4fcb721f2fb.webp) ```css [root@localhost share]# mkdir nginx [root@localhost share]# mv /root/nginx-1.20.2.tar.gz nginx [root@localhost share]# ls app centos nginx webapp [root@localhost share]# ls nginx nginx-1.20.2.tar.gz [root@localhost share]# cd nginx [root@localhost nginx]# tar -zxf nginx-1.20.2.tar.gz [root@localhost nginx]# ls nginx-1.20.2 nginx-1.20.2.tar.gz ``` ![复制代码](https://file.jishuzhan.net/article/1735216216273850370/43ff3abc5d3683fc66d1c4fcb721f2fb.webp) 3、进入箭头所指的文件夹 ![](https://file.jishuzhan.net/article/1735216216273850370/2309b147fe97045f5d43136e153d558d.webp) 4、通过 ./configure 进行nginx配置 ```javascript ./configure --prefix=/usr/share/nginx  --sbin-path=/usr/sbin/nginx  --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log  --http-log-path=/var/log/nginx/access.log  --pid-path=/run/nginx.pid  --lock-path=/run/lock/subsys/nginx  --user=nginx --group=nginx   ``` 按下enter键,执行 ![](https://file.jishuzhan.net/article/1735216216273850370/d62132078cb068294dd5403c46171ed3.webp) 5、编译 并 安装 【一次执行两个指令】 ![](https://file.jishuzhan.net/article/1735216216273850370/998480765d4c2279c0f46dab6a1eb7f0.webp) 如果出现上述问题,说明缺少依赖,安装依赖 执行 yum -y install gcc openssl openssl-devel pcre-deve 再次执行 ./configure 进行基本配置 ```javascript ./configure --prefix=/usr/share/nginx  --sbin-path=/usr/sbin/nginx  --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log  --http-log-path=/var/log/nginx/access.log  --pid-path=/run/nginx.pid  --lock-path=/run/lock/subsys/nginx  --user=nginx --group=nginx   ``` 再次编译 并 安装 【一次执行两个指令】,本次就不会报错了 ## ![](https://file.jishuzhan.net/article/1735216216273850370/8d73c5785acc540282572705cdf8c114.webp) **这样压缩包安装就OK了,在这里建议使用压缩包安装,因为yum安装找不到 ./configure 目录,那么我们无法添加 ssl 和 stream 支持。** ## Nginx 常用命令 (1) 启动: (2) 测试Nginx配置是否正确: (3) 优雅重启: ### 安装Nginx后的注意事项: Nginx默认使用80端口,因为Linux有防火墙,因此,我们需要查看 80 端口是否开启,如果没有开启,需要开启 1、查看开放的端口信息 ![](https://file.jishuzhan.net/article/1735216216273850370/f9922b0dbb52ef7886cba4dba72b881d.webp) 2、开启 80 端口 ```css sudo firewall-cmd --add-port=80/tcp --permanent ``` ![](https://file.jishuzhan.net/article/1735216216273850370/55e980d3607ef2fecd23f61baa74230f.webp) 3、重启防火墙,使增加的端口生效 4、查看nginx的相关路径信息 ![](https://file.jishuzhan.net/article/1735216216273850370/c75b731bd457dfe2d19924504fe6cfcf.webp) 我们要想执行Nginx命令,就必须进入 红圈 内的路径,这个路径不同的操作系统可能不一致 5、查看Nginx 的版本信息 ```less [root@localhost sbin]# cd /usr/sbin [root@localhost sbin]# ./nginx -v nginx version: nginx/1.20.1 ``` 6、修改Nginx配置,因为我的linux 80 端口被占用,因此,我需要使用其他端口 ![](https://file.jishuzhan.net/article/1735216216273850370/191c6deb887b19ff51980874ff6e6dc8.webp) Nginx 的配置文件放在了这个目录下 ![](https://file.jishuzhan.net/article/1735216216273850370/ce37aa7a112cdb378d49201345267dfa.webp) 修改配置文件,80 改成 8001 ![](https://file.jishuzhan.net/article/1735216216273850370/37d4b3757d769ce827f8c6222f30b88a.webp) 7、防火墙开通 8001 端口 并重启防火墙 ![](https://file.jishuzhan.net/article/1735216216273850370/ac45ce6d5edb1823983ad8a3bfa15626.webp) 8、重启、停止、开启Nginx 相关指令 ```css [root@localhost nginx]# cd /usr/sbin [root@localhost sbin]# ./nginx --启动Nginx [root@localhost sbin]# ./nginx -s stop --关闭Ngix [root@localhost sbin]# ./nginx [root@localhost sbin]# ./nginx -s reload --重加载Nginx [修改配置文件后,必须执行,否则不生效] ``` 9、访问 8001 端口 我的: [http://192.168.136.135:8001/](https://link.juejin.cn?target=http%3A%2F%2F192.168.136.135%3A8001%2F "http://192.168.136.135:8001/") ![](https://file.jishuzhan.net/article/1735216216273850370/37faa1da5ecf9d317375f81b518b90bd.webp) 怎么变成了 welcome to centos 了?这其实是**nginx**的欢迎页面(每个版本的nginx各不相同),这并不代表nginx没有正常启动, 我们可以查看 /usr/share/nginx/html目录下的index.html 的内容,判断Nginx是否正确启动 ![](https://file.jishuzhan.net/article/1735216216273850370/8b330dec80aedcf6cef8a174ddcce02a.webp) OK,截止到这儿,Nginx安装、启动成功 ## ^设置Nginx服务自启动【前提是你的nginx 已经启动,80端口可访问】^ 1、在 /lib/systemd/system 目录添加 nginx.service 文件 ```bash #进入自启文件目录 cd /lib/systemd/system #自定义nginx自启文件 touch nginx.service ``` 2、编辑nginx.service 3、添加一下内容, Restart=always 【如果是手动安装,直接复制粘贴,并按照下面的步骤一步步执行】 ![复制代码](https://file.jishuzhan.net/article/1735216216273850370/43ff3abc5d3683fc66d1c4fcb721f2fb.webp) ```xml [Unit] Description=The nginx HTTP and reverse proxy server After=network-online.target remote-fs.target nss-lookup.target Wants=network-online.target [Service] Type=forking PIDFile=/run/nginx.pid # Nginx will fail to start if /run/nginx.pid already exists but has the wrong # SELinux context. This might happen when running `nginx -t` from the cmdline. # https://bugzilla.redhat.com/show_bug.cgi?id=1268621 ExecStartPre=/usr/bin/rm -f /run/nginx.pid ExecStartPre=/usr/sbin/nginx -t ExecStart=/usr/sbin/nginx ExecReload=/usr/sbin/nginx -s reload KillSignal=SIGQUIT TimeoutStopSec=5 KillMode=process PrivateTmp=true Restart=always [Install] WantedBy=multi-user.target ``` ![复制代码](https://file.jishuzhan.net/article/1735216216273850370/43ff3abc5d3683fc66d1c4fcb721f2fb.webp) ![](https://file.jishuzhan.net/article/1735216216273850370/fc3a6ca724678c14211acf3f28646357.webp) 4、设置开机自启 ```bash # 设置开机启动 systemctl enable nginx ``` ![](https://file.jishuzhan.net/article/1735216216273850370/dbace3cdbd5942ef3c3bd95917f2f28f.webp) 5、其它命令 ![复制代码](https://file.jishuzhan.net/article/1735216216273850370/43ff3abc5d3683fc66d1c4fcb721f2fb.webp) ```bash # 启动 nginx systemctl start nginx # 停止 systemctl stop nginx # 加载配置文件 systemctl reload nginx ``` ![复制代码](https://file.jishuzhan.net/article/1735216216273850370/43ff3abc5d3683fc66d1c4fcb721f2fb.webp) 6、关闭虚拟机 7、开机,输入 whereis nginx ,测试是否设置成功 ![](https://file.jishuzhan.net/article/1735216216273850370/69a4a8fd8a2cbcd354f963bdc4f0d42c.webp) 设置成功,over **@天才卧龙的波尔克**

相关推荐
绝顶少年1 分钟前
Spring Boot 注解:深度解析与应用场景
java·spring boot·后端
孪生质数-15 分钟前
SQL server 2022和SSMS的使用案例1
网络·数据库·后端·科技·架构
uhakadotcom19 分钟前
AWS Lightsail 简介与实践
后端·面试·github
程序员鱼皮1 小时前
2025最新 Java 面经:美团后端面试真实复盘,附答案模板,速速收藏!
java·后端·面试
有来技术2 小时前
从0到1手撸企业级权限系统:基于 youlai-boot(开源) + Java17 + Spring Boot 3 完整实战
java·spring boot·后端
陈明勇2 小时前
一文掌握 MCP 上下文协议:从理论到实践
人工智能·后端·mcp
SimonKing2 小时前
因为不知道条件注解@Conditional,错失15K的Offer!
java·后端·架构
橘猫云计算机设计2 小时前
基于springboot微信小程序的旅游攻略系统(源码+lw+部署文档+讲解),源码可白嫖!
java·spring boot·后端·微信小程序·毕业设计·旅游
雷渊2 小时前
spring-IoC容器启动流程源码分析
java·后端·面试