Nginx安装
Posted gz-eternity
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx安装相关的知识,希望对你有一定的参考价值。
一、安装yum依赖关系
yum -y install pcre-devel zlib-devel openssl-devel gcc*
二、下载nginx包,解压
[[email protected] src]# wget http://nginx.org/download/nginx-1.12.2.tar.gz
[[email protected] src]# tar xf nginx-1.12.2.tar.gz
三、编译安装
[[email protected] src]# cd nginx-1.12.2
[[email protected] nginx-1.12.2]# ./configure --prefix=/usr/local/nginx
[[email protected] nginx-1.12.2]# make && make install
四、检测运行
[[email protected] sbin]# ./nginx -t #测试是否正常
[[email protected] sbin]# ./nginx #启动nginx
[[email protected] sbin]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf #启动nginx
[[email protected] sbin]# ./nginx -s stop #停止nginx
[[email protected] sbin]# ./nginx -s reload #加载nginx
以上是关于Nginx安装的主要内容,如果未能解决你的问题,请参考以下文章