CentOS 7 中的 yum 没法直接使用 yum install nginx 这个指令去安装nginx,因为nginx这个服务不是yum库中自带的。图1是官方提供的大致安装步骤,图2是官网提供的多个版本的nginx安装包,下面是我给合自己的系统环境总结的安装方法,供大家参考: 图1 图2 1、按图1中的要求vi nginx.repo这个文件,将图中[nginx]字段中的内容复制进去,保存退出!
图3 图4 3、可以使用两种方法启动nginx服务[root@lnboxue ~]# service nginx start 或 [root@lnboxue ~]# systemctl start nginx
图5 5、查看nginx版本 [root@lnboxue ~]# nginx -vnginx version: nginx/1.12.0 6、本地测试nginx服务[root@lnboxue ~]# curl -i localhost HTTP/1.1 200 OK Server: nginx/1.12.0 Date: Tue, 04 Jul 2017 05:27:07 GMT Content-Type: text/html Content-Length: 612 Last-Modified: Wed, 12 Apr 2017 15:23:46 GMT ………… ………… <h1>Welcome to nginx!</h1> <p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p> <p>For online documentation and support please refer to <a href="http:///"></a>.<br/> Commercial support is available at <a href="http:///"></a>.</p> <p><em>Thank you for using nginx.</em></p> </body> </html> 看到以上信息,说明你的nginx服务已安装成功! |
|
来自: jackeyqing > 《学习整理360doc》