安装nginx编译所需的lib库

yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel
yum -y install pcre pcre-devel

查看pcre(正则库)版本

pcre-config --version

进入编译目录

cd /usr/local/src

从官网下载最新的nginx(stable version稳定版)

wget http://nginx.org/download/nginx-1.14.0.tar.gz

解压nginx压缩包

tar -zxvf nginx-1.14.0.tar.gz

进入解压目录

cd nginx-1.14.0

运行配置脚本(--prefix参数指定nginx安装的目录,默认安装在/usr/local/nginx )

./configure --prefix=/usr/local/nginx

编译安装nginx

make && make install

将nginx执行命令软链接到/usr/bin

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

启动nginx

nginx

设置开机自启动

echo "/usr/local/nginx/sbin/nginx"  /etc/rc.d/rc.local
chmod +x /etc/rc.d/rc.local

以上就是整个安装过程...

执行nginx -h查看相关命令

[root@localhost ~]# nginx -h
nginx version: nginx/1.14.0
Usage: nginx [-"htmlcode">
whereis nginx

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

标签:
centos7编译安装nginx

免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com

评论“centos7编译安装nginx的方法步骤”

暂无“centos7编译安装nginx的方法步骤”评论...