Centos6.6下安装nginx1.17.1

步骤一:先检查一下安装依赖的环境:
在这里插入图片描述
步骤二:安装nginx必须安装的包&添加用户:

1.yum install -y pcre pcre-devel openssl-devel 
	###pcre全称(Perl Compatible Regular Expressions),中文perl兼容正则表达式!(nginx的rewite模块需要它)
2.useradd -s /sbin/nologin -M nginx
3. id nginx

Centos6.6下安装nginx1.17.1_第1张图片
#我这里已经安装好了,所以提示已经存在。
步骤三:下载nginx #我一般都是把应用放在/usr/local/目录下,记住自己存放的路径,后面步骤需要用到,不然这一步容易出错
1:wget -q http://nginx.org/download/nginx-1.6.3.tar.gz
2:tar xzvf nginx-1.17.1.tar.gz
3:cd nginx-1.17.1
4:./configure --prefix=/usr/local/nginx --conf-path=/usr/local/nginx-1.17.1/nginx.conf
5:make
6:make install
#这里make(编译)和make install步骤结果没有报错就没问题
步骤四::启动nginx
/usr/local/nginx-1.17.1/sbin/nginx

查看nginx是否启动成功
ps -ef|grep nginx
Centos6.6下安装nginx1.17.1_第2张图片
查看nginx端口号
ss -lnput|grep nginx
在这里插入图片描述
停掉nginx:
在这里插入图片描述
/usr/local/nginx1.17.1/sbin/nginx -s stop
重启nginx:
/usr/local/nginx1.17.1/sbin/nginx -s reload

以上就是nginx1.6.3的安装!此时在Linux内置浏览器下输入IP地址,即可看到如下页面

Centos6.6下安装nginx1.17.1_第3张图片

你可能感兴趣的:(Linux常用服务器的安装)