码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS7.5下安装nginx --CentOS7.5

时间:2019-05-15 09:22:58      阅读:408      评论:0      收藏:0      [点我收藏+]

标签:http   链接   add   grep   span   mod   sbin   style   pre   

1、安装ngnix一些依赖包

[root@VM_39_157_centos ~]# yum -y install gcc gcc-c++ openssl-devel pcre-devel httpd-tools

2、从官网下载nginx二进制包解压

[root@VM_39_157_centos ~]# tar -zxf nginx-1.15.9.tar.gz

3、执行配置文件,指定需要的模块

[root@VM_39_157_centos nginx-1.14.0]# useradd nginx

[root@VM_39_157_centos nginx-1.14.0]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_mp4_module --with-http_flv_module

4、执行编译和安装

[root@VM_39_157_centos nginx-1.14.0]# make && make install

5、发配软链接

ln -s /usr/local/nginx/sbin/nginx /usr/sbin

6、启动nginx

[root@VM_39_157_centos ~]# nginx

7、查看nginx占用的端口

[root@VM_39_157_centos ~]# netstat -anptu | grep nginx

 

CentOS7.5下安装nginx --CentOS7.5

标签:http   链接   add   grep   span   mod   sbin   style   pre   

原文地址:https://www.cnblogs.com/qikeyishu/p/10601138.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!