centos7编译安装nginx的方法步骤
更新时间:2018年07月21日 08:39:37 作者:一落一
这篇文章主要介绍了centos7编译安装nginx的方法步骤,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
安装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 [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g directives] Options: -?,-h : this help -v : show version and exit -V : show version and configure options then exit -t : test configuration and exit -T : test configuration, dump it and exit -q : suppress non-error messages during configuration testing -s signal : send signal to a master process: stop, quit, reopen, reload -p prefix : set prefix path (default: /usr/local/nginx/) -c filename : set configuration file (default: conf/nginx.conf) -g directives : set global directives out of configuration file
查看nginx安装目录
whereis nginx
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
SpringBoot前端后端分离之Nginx服务器下载安装过程
Nginx是一款轻量级的Web服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,这篇文章主要介绍了SpringBoot前端后端分离之Nginx服务器,需要的朋友可以参考下2022-08-08Windows安装nginx1.10.1反向代理访问IIS网站
这篇文章主要为大家详细介绍了Windows安装nginx1.10.1反向代理访问IIS网站的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2016-11-11
最新评论