Nginx 离线安装与先容

立山  金牌会员 | 2025-3-18 18:25:00 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 983|帖子 983|积分 2949

一、安装

1.1 离线安装


  • 预备源代码包
    1. #从项目的官方网站或代码仓库(如 GitHub)下载源代码
    2. wget https://nginx.org/download/nginx-1.24.0.tar.gz     #下载
    3. tar -xzvf nginx-1.24.0.tar.gz       #解压
    4. cd nginx-1.24.0
    复制代码
  • 安装编译工具和依靠项
    1. #正则表达式库(pcre-devel)、 数据压缩库(zlib-devel)和 https模块库(openssl-devel)
    2. sudo yum install pcre pcre-devel zlib zlib-devel openssl openssl-devel
    复制代码
    zlib与zlib-devel关系:zlib-devel提供编译环境,zlib提供运行时环境。其他同理,*-devel 库只支持编译,并不支持运行。
  • 安装(3步曲)
    1. #配置构建环境
    2. ./configure --prefix=/usr/local/nginx \
    3.             --with-http_ssl_module
    4. #编译
    5. make
    6. #安装
    7. sudo make install
    复制代码
    ./configure --help 查看./configure 支持哪些参数

    • --with-xxx_xxx:  #表示默认不安装该模块。如果需要安装,则添加到 ./configure 参数中;
    • --without-xxx_xxx: #表示默认会安装该模块。如果不需要安装,则添加到 ./configure 参数中。
    • --prefix    #指定了Nginx的安装目录;
    • --with-http_ssl_module    #启用 SSL 支持,确保Nginx编译时包罗SSL模块;
    • --with-http_stub_status_module    #启用Nginx状态信息模块(监控 Nginx 的性能和康健状态)

  • 验证
    1. #启动验证
    2. sudo /usr/local/nginx/sbin/nginx
    3. /usr/local/nginx/sbin/nginx -version
    复制代码
  • 卸载
    1. sudo rm -rf /usr/local/nginx
    2. #编译安装只需清理编译目录即可,即删除 --prefix 参数目录。   
    复制代码
    更多配置内容查看这篇:《Nginx 配置与实战
1.2 升级(安装缺失模块)


  • 查抄已安装模块,命令:/usr/local/nginx/sbin/nginx -V
    1. nginx version: nginx/1.24.0
    2. built by gcc 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC)
    3. built with OpenSSL 1.0.2k-fips  26 Jan 2017
    4. TLS SNI support enabled
    5. configure arguments: --prefix=/usr/local/nginx --with-http_ssl_module
    复制代码
  • 安装模块
    由于已经安装了 --with-http_ssl_module 模块,所以以安装 --with-http_stub_status_module 为例:
    1. #1. 进入安装包 nginx-1.24.0 目录
    2. cd nginx-1.24.0
    3. #2. 重新配置构建环境
    4. ./configure --prefix=/usr/local/nginx \
    5.             --with-http_ssl_module \
    6.             --with-http_stub_status_module
    7. #3. 编译(make成功后,不用make install,否则nginx会重新安装,会将原来的配置覆盖)
    8. make
    复制代码
    如果不知道需要哪些模块,可以按照官方yum安装的模块,基本能满足95%以上的生产需求。yum安装模块如下,可自行参考:
    1. ./configure --prefix=/usr/local/nginx --user=$USER --group=$(id -gn) --with-compat --with-debug --with-file-aio --with-google_perftools_module --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_degradation_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module=dynamic --with-http_mp4_module --with-http_perl_module=dynamic --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-http_xslt_module=dynamic --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-stream_ssl_preread_module --with-threads --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -pie'
    复制代码
  • 验证并更新
    make执行后,nginx-1.24.0/objs 目录下会重新生成一个 nginx 文件,这个就是新版本的程序了。
    为了清晰体现“新nginx”文件位置,以下操作均在 nginx-1.24.0 上级目录操作
    查看新nginx的编译模块: nginx-1.24.0/objs/nginx -V
    1. nginx version: nginx/1.24.0
    2. built by gcc 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC)
    3. built with OpenSSL 1.0.2k-fips  26 Jan 2017
    4. TLS SNI support enabled
    5. configure arguments: --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_status_module
    复制代码
    查抄模块无误后更新
    1. #1. 停止 nginx 服务
    2. sudo /usr/local/nginx/sbin/nginx -s stop
    3. #2. 覆盖旧 nginx 启动文件
    4. mv nginx-1.24.0/objs/nginx /usr/local/nginx/sbin/nginx
    5. #3. 启动测试
    6. sudo /usr/local/nginx/sbin/nginx
    复制代码
1.3 常用命令


  • 软链接(可选)
    1. #查看 PATH 环境
    2. echo $PATH
    3. #创建软链接
    4. sudo ls -s /usr/local/nginx/sbin/nginx /usr/sbin/nginx
    5. #测试软链接
    6. nginx -version
    7. sudo nginx
    8. sudo nginx -s stop
    复制代码
    点击此处查看更多软链接先容
  • 服务操作
    1. nginx -s reload  #热重启:向主进程发送信号,重新加载配置文件。
    2. nginx -s reopen  #重启 Nginx
    3. nginx -s stop    #快速关闭
    4. nginx -s quit    #等待工作进程处理完成后关闭
    5. nginx -T         #查看当前 Nginx 最终的配置
    6. nginx -t         #检查配置是否有问题
    复制代码
1.4 Nginx 开机自启

1.4.1 Centos 6.x 配置


  • 新建 nginx 服务脚本文件(官方)
    1. #1. 新建 nginx 文件
    2. sudo touch /etc/init.d/nginx
    3. #2. 设置文件权限
    4. sudo chmod a+x /etc/init.d/nginx
    5. #3. 配置文件脚本
    6. sudo tee /etc/init.d/nginx <<-EOF
    7. #!/bin/sh
    8. #
    9. # nginx - this script starts and stops the nginx daemon
    10. #
    11. # chkconfig:   - 85 15
    12. # description:  NGINX is an HTTP(S) server, HTTP(S) reverse \
    13. #               proxy and IMAP/POP3 proxy server
    14. # processname: nginx
    15. # config:      /etc/nginx/nginx.conf
    16. # config:      /etc/sysconfig/nginx
    17. # pidfile:     /var/run/nginx.pid
    18. # Source function library.
    19. . /etc/rc.d/init.d/functions
    20. # Source networking configuration.
    21. . /etc/sysconfig/network
    22. # Check that networking is up.
    23. [ "$NETWORKING" = "no" ] && exit 0
    24. #根据实际情况,修改nginx的安装路径和配置文件
    25. nginx="/usr/local/nginx/sbin/nginx"
    26. NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"
    27. prog=$(basename $nginx)
    28. [ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx
    29. lockfile=/var/lock/subsys/nginx
    30. make_dirs() {
    31. # make required directories
    32. user=`$nginx -V 2>&1 | grep "configure arguments:" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -`
    33. if [ -z "`grep $user /etc/passwd`" ]; then
    34.     useradd -M -s /bin/nologin $user
    35. fi
    36. options=`$nginx -V 2>&1 | grep 'configure arguments:'`
    37. for opt in $options; do
    38.     if [ `echo $opt | grep '.*-temp-path'` ]; then
    39.         value=`echo $opt | cut -d "=" -f 2`
    40.         if [ ! -d "$value" ]; then
    41.             # echo "creating" $value
    42.             mkdir -p $value && chown -R $user $value
    43.         fi
    44.     fi
    45. done
    46. }
    47. start() {
    48.     [ -x $nginx ] || exit 5
    49.     [ -f $NGINX_CONF_FILE ] || exit 6
    50.     make_dirs
    51.     echo -n $"Starting $prog: "
    52.     daemon $nginx -c $NGINX_CONF_FILE
    53.     retval=$?
    54.     echo
    55.     [ $retval -eq 0 ] && touch $lockfile
    56.     return $retval
    57. }
    58. stop() {
    59.     echo -n $"Stopping $prog: "
    60.     killproc $prog -QUIT
    61.     retval=$?
    62.     echo
    63.     [ $retval -eq 0 ] && rm -f $lockfile
    64.     return $retval
    65. }
    66. restart() {
    67.     configtest || return $?
    68.     stop
    69.     sleep 1
    70.     start
    71. }
    72. reload() {
    73.     configtest || return $?
    74.     echo -n $"Reloading $prog: "
    75.     killproc $nginx -HUP
    76.     RETVAL=$?
    77.     echo
    78. }
    79. force_reload() {
    80.     restart
    81. }
    82. configtest() {
    83. $nginx -t -c $NGINX_CONF_FILE
    84. }
    85. rh_status() {
    86.     status $prog
    87. }
    88. rh_status_q() {
    89.     rh_status >/dev/null 2>&1
    90. }
    91. case "$1" in
    92.     start)
    93.         rh_status_q && exit 0
    94.         $1
    95.         ;;
    96.     stop)
    97.         rh_status_q || exit 0
    98.         $1
    99.         ;;
    100.     restart|configtest)
    101.         $1
    102.         ;;
    103.     reload)
    104.         rh_status_q || exit 7
    105.         $1
    106.         ;;
    107.     force-reload)
    108.         force_reload
    109.         ;;
    110.     status)
    111.         rh_status
    112.         ;;
    113.     condrestart|try-restart)
    114.         rh_status_q || exit 0
    115.             ;;
    116.     *)
    117.         echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
    118.         exit 2
    119. esac
    120. EOF
    复制代码
    此脚本是nginx官方提供的,地址:http://wiki.nginx.org/RedHatNginxInitScript
    注意:如果是自定义安装的nginx, 修改根据现实环境修改命令程序路径和配置文件路径。
  • 服务脚本命令
    1. /etc/init.d/nginx start      #启动服务
    2. /etc/init.d/nginx stop       #停止服务  
    3. /etc/init.d/nginx restart    #重启服务
    4. /etc/init.d/nginx status     #查看服务的状态
    5. /etc/init.d/nginx reload     #刷新配置文件
    复制代码
  • 系统管理(chkconfig)
    上面的方法完成了用脚本管理nginx服务的功能,但是还是不太方便,好比要设置nginx开机启动等。
    这个时候我们可以利用chkconfig来进行管理。
    1. #1. 将nginx服务加入chkconfig管理列表
    2. sudo chkconfig --add /etc/init.d/nginx
    3. #设置终端模式开机启动
    4. sudo chkconfig nginx on
    5. #2. 服务管理
    6. service nginx start     #启动服务
    7. service nginx stop      #停止服务
    8. service nginx restart   #重启服务
    9. service nginx status    #查询服务的状态
    10. service nginx relaod    #刷新配置文
    复制代码
1.4.2 Centos 7.x 配置

<ol>新建 nginx 服务文件
[code]#1. 新建 nginx 文件sudo touch /lib/systemd/system/nginx#2. 配置文件脚本sudo tee /lib/systemd/system/nginx
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

立山

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表