centos 7编译安装nginx
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 7编译安装nginx相关的知识,希望对你有一定的参考价值。
禁用防火墙
systemctl disable firewalld
systemctl stop firewalld
setenforce 0
安装pcre库
yum install pcre*
安装zlib库
yum install zlib*
增加nginx用户:useradd nginx -G nginx
编译安装nginx:
./configure --prefix=/usr/local/nginx --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --user=nginx --group=nginx
make && make install
启动nginx:
cd /usr/local/nginx/sbin
nohup ./nginx &
以上是关于centos 7编译安装nginx的主要内容,如果未能解决你的问题,请参考以下文章