在CentOS/RHEL6操作系统上编译安装Nginx并配置服务

这篇文章主要讲述的是在CentOS/RHEL6操作系统上编译安装Nginx并配置服务,本文档硬件采用VMware Workstation Pro虚拟机模拟,安装步骤与现实环境无异。关于虚拟机的安装及配置不过多阐述,本文主要讲述Nginx编译安装配置和服务配置过程。

一、环境准备

本文中提及的所有软件如何获取将在本章节讲解,如仅仅是需要参考如何编译安装Nginx请直接到Nginx官网下载软件后,跳转到本文第二章节”安装编译环境”开始阅读。
1.本文使用VMware Workstation Pro 17来模拟服务器硬件环境。
2.本文使用了RedHat Enterprise Linux(RHEL)6.10来安装Nginx。
3.编写本文时Nginx的稳定版本为nginx-1.22.1,如果有幸能被你看到这篇文章,你可以访问”Nginx官网“获取最新版本的软件。

二、安装编译环境

[root@yunweixia.com nginx-1.22.1]#yum -y install gcc wget automake autoconf libtool libxml2-devel libxslt-devel perl-devel perl-ExtUtils-Embed pcre-devel openssl-devel

三、编译安装Nginx

1,下载最新的Nginx版本

[root@yunweixia.com nginx-1.22.1]#wget http://nginx.org/download/nginx-1.22.1.tar.gz

2,然后就是将下载下来的Nginx解压缩。

[root@yunweixia.com nginx-1.22.1]# tar zxvf nginx-1.22.1.tar.gz

3,进入解压缩后的Nginx目录。如果你要定制版本号可以更改源码目录src/core/nginx.h文件。

[root@yunweixia.com nginx-1.22.1]#cd nginx-1.22.1/

4,创建一个nginx目录用来存放运行的临时文件夹。

[root@yunweixia.com nginx-1.22.1]#mkdir -p /etc/nginx
[root@yunweixia.com nginx-1.22.1]#mkdir -p /var/cache/nginx
[root@yunweixia.com nginx-1.22.1]#useradd app01

5,开始configure Nginx。

[root@yunweixia.com nginx-1.22.1]#
./configure \
--prefix=/etc/nginx \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/cache/nginx/client_temp \
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
--http-scgi-temp-path=/var/cache/nginx/scgi_temp \
--user=app01 \
--group=app01 \
--with-pcre \
--with-http_v2_module \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-http_auth_request_module \
--with-mail \
--with-mail_ssl_module \
--with-file-aio \
--with-ipv6 \
--with-http_v2_module \
--with-threads \
--with-stream \
--with-stream_ssl_module

6,接着继续编译。

[root@yunweixia.com nginx-1.22.1]#make

7,安装Nginx。

[root@yunweixia.com nginx-1.22.1]#make install

8,配置Nginx服务,将以下下内容复制输入到新建的nginx文件中。

[root@yunweixia.com nginx-1.22.1]#vi /etc/init.d/nginx
#!/bin/sh  
# nginx - this script starts and stops the nginx daemin  
# Taken from https://yunweixia.com  
# chkconfig:   - 85 15  
# description:  Nginx is an HTTP(S) server, HTTP(S) reverse   
#               proxy and IMAP/POP3 proxy server  
# processname: nginx  
# config:      /etc/nginx/nginx.conf  
# pidfile:     /var/run/nginx.pid 
# Source function library.  
. /etc/rc.d/init.d/functions  
# Source networking configuration.  
. /etc/sysconfig/network  
# Check that networking is up.  
[ "$NETWORKING" = "no" ] && exit 0  
nginx="/usr/sbin/nginx"  
prog=$(basename $nginx)  
NGINX_CONF_FILE="/etc/nginx/nginx.conf" 
lockfile=/var/lock/subsys/nginx
start() {  
    [ -x $nginx ] || exit 5  
    [ -f $NGINX_CONF_FILE ] || exit 6  
    echo -n $"Starting $prog: "  
    daemon $nginx -c $NGINX_CONF_FILE  
    retval=$?  
    echo  
    [ $retval -eq 0 ] && touch $lockfile  
    return $retval  
}  
stop() {  
    echo -n $"Stopping $prog: "  
    killproc $prog -QUIT  
    retval=$?  
    echo  
    [ $retval -eq 0 ] && rm -f $lockfile  
    return $retval  
}  
restart() {  
    configtest || return $?  
    stop  
    start  
}  
reload() {  
    configtest || return $?  
    echo -n $"Reloading $prog: "  
    killproc $nginx -HUP  
    RETVAL=$?  
    echo  
}  
force_reload() {  
    restart  
}  
configtest() {  
  $nginx -t -c $NGINX_CONF_FILE  
}  
rh_status() {  
    status $prog  
}  
rh_status_q() {  
    rh_status >/dev/null 2>&1  
}  
case "$1" in  
    start)  
        rh_status_q && exit 0  
        $1  
        ;;  
    stop)  
        rh_status_q || exit 0  
        $1  
        ;;  
    restart|configtest)  
        $1  
        ;;  
    reload)  
        rh_status_q || exit 7  
        $1  
        ;;  
    force-reload)  
        force_reload  
        ;;  
    status)  
        rh_status  
        ;;  
    condrestart|try-restart)  
        rh_status_q || exit 0  
            ;;  
    *)  
        echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"  
        exit 2  
esac

9,# 设置执行权限。

[root@yunweixia.com nginx-1.22.1]#chmod +x /etc/init.d/nginx

10,# 注册成服务。

[root@yunweixia.com nginx-1.22.1]#chkconfig –-add nginx

11,# 设置开机启动。

[root@yunweixia.com nginx-1.22.1]#chkconfig nginx on

12,尝试管理Nginx。

[root@yunweixia.com nginx-1.22.1]# service nginx status
[root@yunweixia.com nginx-1.22.1]# service nginx start
Starting nginx: [ OK ]
[root@yunweixia.com nginx-1.22.1]#systemctl stop nginx

四、结论

按照本文可以完整的在CentOS/RHEL6操作系统上编译安装Nginx并配置服务,并可以通过系统服务来启动、关闭、重启nginx服务。

原创文章,作者:运维侠,如若转载,请注明出处:https://www.yunweixia.com/solutions/centos-rhel6-compile-install-nginx-service.html

(0)
运维侠的头像运维侠共建用户
上一篇 2025年5月14日 12:38
下一篇 2025年5月15日 18:11

相关推荐

发表回复

登录后才能评论