欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Nginx安装

程序员文章站 2022-05-17 18:05:05
...

一、 安装方法

1、编译安装

1.1、确保系统安装gcc环境、pcre第三方开发包、zlib解压缩工具、openssl库

yum install -y gcc gcc-c++ autoconf automake
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install -y openssl openssl-devel

1.2、把nginx源码包上传到linux系统上

cd /tmp
wget http://nginx.org/download/nginx-1.14.0.tar.gz
tar -xvf nginx-1.14.0.tar.gz -C /usr/local
cd /usr/local/nginx-1.14.0

./configure \
--prefix=/usr/local/nginx \ 	#软件安装位置
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_gzip_static_module \
--http-client-body-temp-path=/var/temp/nginx/client \ #临时文件位置
--http-proxy-temp-path=/var/temp/nginx/proxy \
--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \
--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \
--http-scgi-temp-path=/var/temp/nginx/scgi

1.3、创建临时文件目录/var/temp/nginx/

mkdir /var/temp/nginx -p

1.4、进行编译安装

make 
make install 

1.5、启动nginx

cd sbin
./nginx

1.6、启动后查看nginx进程

ps -aux | grep nginx

1.7、关闭nginx

./nginx -s stop

1.8、重新加载nginx

./nginx -s reload

1.9、防火墙开放nginx访问端口

/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
/etc/rc.d/init.d/iptables save

1.10、nginx配置文件
Nginx安装

相关标签: nginx安装