编译安装Nginx

  1. 先安装编译过程中所需依赖包
    # yum -y install gcc pcre-devel openssl-devel zlib-devel
  2. jemalloc(更好的内存管理)
    # wget http://www.canonware.com/download/jemalloc/jemalloc-4.0.4.tar.bz2
    # tar -jxvf jemalloc-4.0.4.tar.bz2 && cd jemalloc-4.0.4
    # ./configure
    # make && make install
    # echo '/usr/local/lib' > /etc/ld.so.conf.d/local.conf
    # ldconfig
    备注:如果解压失败,遇到如下问题
    1. tar (child): lbzip2: Cannot exec: No such file or directory
    2. tar (child): Error is not recoverable: exiting now
    3. tar: Child returned status
    4. tar: Error is not recoverable: exiting now

    解决方法:安装bzip2
    # yum install bzip2

  3. lua模块
    lua-nginx-module来自大牛agentzh的开源项目,在Nginx中嵌入Lua语言,使之可以支持强大Lua语法
    1. 下载LuaJIT2.0并安装
    切换到上级目录  # cd ..
    # wget http://luajit.org/download/LuaJIT-2.0.4.tar.gz
    # tar -zxvf LuaJIT-2.0.4.tar.gz && cd LuaJIT-2.0.4
    # make && make install
    2. 下载并解压ngx_devel_kit和lua-nginx-module
    切换到上级目录  # cd ..
    下载ngx_devel_kit-0.2.19.tar.gz (https://codeload.github.com/simpl/ngx_devel_kit/tar.gz/v0.2.19)
    解压  # tar -zxvf ngx_devel_kit-0.2.19.tar.gz
    下载lua-nginx-module-0.9.20rc2.tar.gz (https://codeload.github.com/openresty/lua-nginx-module/tar.gz/v0.9.20rc2)
    解压  # tar -zxvf lua-nginx-module-0.9.20rc2.tar.gz
    3. 导入环境变量
    # export LUAJIT_LIB=/usr/local/lib
    # export LUAJIT_INC=/usr/local/include/luajit-2.0
  4. ngx_cache_purge模块(Nginx清除缓存模块)
    切换到上级目录  # cd ..
    下载 # wget http://labs.frickle.com/files/ngx_cache_purge-2.3.tar.gz
    解压 # tar -zxvf ngx_cache_purge-2.3.tar.gz
  5. 下载Nginx源码包
    # wget http://nginx.org/download/nginx-1.9.9.tar.gz
  6. 解压Nginx源码包
    # tar -zxvf nginx-1.9.9.tar.gz && cd 
    nginx-1.9.9
  7. 编译安装Nginx
    # ./configure \
        --sbin-path=/usr/local/nginx/nginx \
        --conf-path=/usr/local/nginx/nginx.conf \
        --pid-path=/var/run/nginx.pid \
        --user=nginx \
        --group=nginx \
        --with-http_ssl_module \
        --with-http_stub_status_module \
        --with-threads \
        --with-stream \
        --with-stream_ssl_module \
        --with-ipv6 \
        --with-http_v2_module \
        --add-module=../ngx_cache_purge-2.3 \
        --add-module=../lua-nginx-module-0.9.20rc2 \
        --add-module=../ngx_devel_kit-0.2.19 \
        --with-ld-opt='-ljemalloc' \
        --with-cc-opt='-O2 -g -pipe -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic'

    # make -j2 && make install

  8. 创建Nginx启动脚本
    # vi /etc/init.d/nginx
    1. #!/bin/sh
    2. #
    3. # nginx - this script starts and stops the nginx daemon
    4. #
    5. # chkconfig: -
    6. # description: NGINX is an HTTP(S) server, HTTP(S) reverse \
    7. # proxy and IMAP/POP3 proxy server
    8. # processname: nginx
    9. # config: /etc/nginx/nginx.conf
    10. # config: /etc/sysconfig/nginx
    11. # pidfile: /var/run/nginx.pid
    12.  
    13. # Source function library.
    14. . /etc/rc.d/init.d/functions
    15.  
    16. # Source networking configuration.
    17. . /etc/sysconfig/network
    18.  
    19. # Check that networking is up.
    20. [ "$NETWORKING" = "no" ] && exit
    21.  
    22. nginx="/usr/local/nginx/nginx"
    23. prog=$(basename $nginx)
    24.  
    25. NGINX_CONF_FILE="/usr/local/nginx/nginx.conf"
    26.  
    27. [ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx
    28.  
    29. lockfile=/var/lock/subsys/nginx
    30.  
    31. make_dirs() {
    32. # make required directories
    33. user=`$nginx -V >& | grep "configure arguments:" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -`
    34. if [ -z "`grep $user /etc/passwd`" ]; then
    35. useradd -r -M -s /sbin/nologin $user
    36. fi
    37. options=`$nginx -V >& | grep 'configure arguments:'`
    38. for opt in $options; do
    39. if [ `echo $opt | grep '.*-temp-path'` ]; then
    40. value=`echo $opt | cut -d "=" -f `
    41. if [ ! -d "$value" ]; then
    42. # echo "creating" $value
    43. mkdir -p $value && chown -R $user $value
    44. fi
    45. fi
    46. done
    47. }
    48.  
    49. start() {
    50. [ -x $nginx ] || exit
    51. [ -f $NGINX_CONF_FILE ] || exit
    52. make_dirs
    53. echo -n $"Starting $prog: "
    54. daemon $nginx -c $NGINX_CONF_FILE
    55. retval=$?
    56. echo
    57. [ $retval -eq ] && touch $lockfile
    58. return $retval
    59. }
    60.  
    61. stop() {
    62. echo -n $"Stopping $prog: "
    63. killproc $prog -QUIT
    64. retval=$?
    65. echo
    66. [ $retval -eq ] && rm -f $lockfile
    67. return $retval
    68. }
    69.  
    70. restart() {
    71. configtest || return $?
    72. stop
    73. sleep
    74. start
    75. }
    76.  
    77. reload() {
    78. configtest || return $?
    79. echo -n $"Reloading $prog: "
    80. killproc $nginx -HUP
    81. RETVAL=$?
    82. echo
    83. }
    84.  
    85. force_reload() {
    86. restart
    87. }
    88.  
    89. configtest() {
    90. $nginx -t -c $NGINX_CONF_FILE
    91. }
    92.  
    93. rh_status() {
    94. status $prog
    95. }
    96.  
    97. rh_status_q() {
    98. rh_status >/dev/null >&
    99. }
    100.  
    101. case "$1" in
    102. start)
    103. rh_status_q && exit
    104. $
    105. ;;
    106. stop)
    107. rh_status_q || exit
    108. $
    109. ;;
    110. restart|configtest)
    111. $
    112. ;;
    113. reload)
    114. rh_status_q || exit
    115. $
    116. ;;
    117. force-reload)
    118. force_reload
    119. ;;
    120. status)
    121. rh_status
    122. ;;
    123. condrestart|try-restart)
    124. rh_status_q || exit
    125. ;;
    126. *)
    127. echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
    128. exit
    129. esac
  9. 设置Nginx服务开机自启动
    # chmod +x /etc/init.d/nginx
    # chkconfig nginx on
  10. 开通防火墙
    # firewall-cmd --permanent --add-service={http,https}
    # firewall-cmd --reload
  11. 新建网站根目录并更改SELinux类型
    # mkdir -p /data/www && chcon -t httpd_sys_content_t -R /data/www/
  12. 创建conf目录,用于存放Nginx各类配置文件
    # mkdir /usr/local/nginx/conf
  13. 创建gzip.conf配置文件
    # vi /usr/local/nginx/conf/gzip.conf
    1. gzip on;
    2. gzip_min_length 1k;
    3. gzip_buffers 16k;
    4. gzip_http_version 1.0;
    5. gzip_comp_level ;
    6. gzip_proxied any;
    7. gzip_vary on;
    8. gzip_disable "MSIE [1-6]\.";
    9. gzip_types
    10. text/plain
    11. application/x-javascript
    12. text/css
    13. application/xml
    14. text/javascript
    15. application/x-httpd-php
    16. image/jpeg
    17. image/gif
    18. image/png;
  14. 创建no-default配置文件
    # vi /usr/local/nginx/conf/no-default.conf
    1. # Drop requests for unknown hosts
    2. #
    3. # If no default server is defined, nginx will use the first found server.
    4. # To prevent host header attacks, or other potential problems when an unknown
    5. # servername is used in a request, it's recommended to drop the request
    6. # returning "no response".
    7.  
    8. server {
    9. listen default_server;
    10. return ;
    11. }
  15. 创建example.com配置文件(假设example.com的站点在这台服务器上)
    # vi /usr/local/nginx/conf/example.com.conf
    1. server {
    2. listen [::]:;
    3. listen ;
    4.  
    5. server_name www.example.com;
    6. return $scheme://example.com$request_uri;
    7. }
    8.  
    9. server {
    10. listen [::]:;
    11. listen ;
    12.  
    13. server_name example.com;
    14. root /data/www/example.com;
    15.  
    16. error_page /.html;
    17.  
    18. location ~ \.php$ {
    19. fastcgi_pass 127.0.0.1:;
    20. fastcgi_index index.php;
    21. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    22. include fastcgi_params;
    23. }
    24.  
    25. location ~ \.jsp$ {
    26. proxy_set_header X-Real-IP $remote_addr;
    27. proxy_pass http://127.0.0.1:8080;
    28. }
    29. }
  16. 修改Nginx配置文件
    # vi /usr/local/nginx/nginx.conf
    1. user nginx nginx;
    2. worker_processes auto;
    3.  
    4. error_log logs/error.log warn;
    5.  
    6. pid /var/run/nginx.pid;
    7.  
    8. worker_rlimit_nofile ;
    9.  
    10. events {
    11. worker_connections ;
    12. }
    13.  
    14. http {
    15. include mime.types;
    16. default_type application/octet-stream;
    17.  
    18. log_format main '$remote_addr - $remote_user [$time_local] "$request" '
    19. '$status $body_bytes_sent "$http_referer" '
    20. '"$http_user_agent" "$http_x_forwarded_for"';
    21.  
    22. access_log logs/access.log main;
    23.  
    24. charset utf-;
    25. index index.html index.htm index.php index.jsp;
    26.  
    27. sendfile on;
    28. tcp_nopush on;
    29. server_tokens off;
    30.  
    31. keepalive_requests ;
    32. keepalive_timeout ;
    33.  
    34. include conf/*.conf;
    35. }
  17. 启动Nginx
    # service nginx start

备注:

详细编译选项:

  1. ./configure \
  2. --prefix=/etc/nginx \
  3. --sbin-path=/usr/sbin/nginx \
  4. --conf-path=/etc/nginx/nginx.conf \
  5. --error-log-path=/var/log/nginx/error.log \
  6. --http-log-path=/var/log/nginx/access.log \
  7. --pid-path=/var/run/nginx.pid \
  8. --lock-path=/var/run/nginx.lock \
  9. --http-client-body-temp-path=/var/cache/nginx/client_temp \
  10. --http-proxy-temp-path=/var/cache/nginx/proxy_temp \
  11. --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
  12. --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
  13. --http-scgi-temp-path=/var/cache/nginx/scgi_temp \
  14. --user=nginx \
  15. --group=nginx \
  16. --with-http_ssl_module \
  17. --with-http_realip_module \
  18. --with-http_addition_module \
  19. --with-http_sub_module \
  20. --with-http_dav_module \
  21. --with-http_flv_module \
  22. --with-http_mp4_module \
  23. --with-http_gunzip_module \
  24. --with-http_gzip_static_module \
  25. --with-http_random_index_module \
  26. --with-http_secure_link_module \
  27. --with-http_stub_status_module \
  28. --with-http_auth_request_module \
  29. --with-mail \
  30. --with-mail_ssl_module \
  31. --with-file-aio \
  32. --with-ipv6 \
  33. --with-http_spdy_module \
  34. --with-cc-opt='-O2 -g -pipe -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic'

yum安装Nginx

  1. 添加Nginx源
    # wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
    # rpm -Uvh nginx-release-centos-7-0.el7.ngx.noarch.rpm
  2. 安装Nginx
    # yum install nginx

对应不同系统的RPM包
RedHat6(64bit)    http://nginx.org/packages/rhel/6/x86_64/RPMS/nginx-1.8.0-1.el6.ngx.x86_64.rpmCentOS7(64bit)    http://nginx.org/packages/centos/7/x86_64/RPMS/nginx-1.8.0-1.el7.ngx.x86_64.rpm

RedHat7安装Nginx及第三方模块的更多相关文章

  1. Windows 编译安装 nginx 服务器 + rtmp 模块

    有关博客: <Windows 编译安装 nginx 服务器 + rtmp 模块>.<Ubuntu 编译安装 nginx>.<Arm-Linux 移植 Nginx> ...

  2. Day 16 : Python 时间模块[time,]datetime[]及第三方模块的下载与安装

    在进行python程序开发时,除了可以使用python内置的标准模块外,还右许多第三方模块使用,可以在python官网找到. 在使用第三方模块时,需要下载并安装此模块,然后就可以使用标准模块一样导入并 ...

  3. OSX安装nginx和rtmp模块(rtmp直播服务器搭建)

    1.安装Homebrew,执行命令 1 ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/ma ...

  4. yum安装nginx添加upstream_check_module模块

    下载模块 upstream_check_module 查看yum安装nginx版本信息 # nginx -V nginx version: nginx/1.17.0 built by gcc 4.8. ...

  5. 已安装nginx动态添加模块

    说明:已经安装好的nginx,需要添加一个未被编译安装的模块,需要怎么弄呢? 具体:这里以安装第三方ngx_http_google_filter_module模块为例nginx的模块是需要重新编译ng ...

  6. ubuntu系统下安装pip3及第三方库的安装

    ubuntu系统下会自带python2.x和python3.x坏境,不需要我们去安装.并且ubuntu系统下还会自动帮助我们安装python2.x坏境下的pip安装工具, 但是没有python3.x坏 ...

  7. 如何安装nginx第三方模块

    nginx文件非常小但是性能非常的高效,这方面完胜apache,nginx文件小的一个原因之一是nginx自带的功能相对较少,好在nginx允许第三方模块,第三方模块使得nginx越发的强大. 在安装 ...

  8. nginx 增加 lua模块

    Nginx中的stub_status模块主要用于查看Nginx的一些状态信息. 本模块默认是不会编译进Nginx的,如果你要使用该模块,则要在编译安装Nginx时指定: ./configure –wi ...

  9. Linux、Docker安装Nginx

    Docker安装Nginx #docker images nginx #docker search nginx #docker pull nginx #docker run -it -p 8084:8 ...

随机推荐

  1. PCB 敷铜间距规则(转)

    第一优先规则: First Object = InPolygon, Second Object = All 第二优先规则:First Object = All, Second Object = All ...

  2. 关于在WIN32调用一些Zw系列的文件操作函数

    转自:http://blog.csdn.net/cooblily/archive/2007/10/27/1848037.aspx 都好久沒上來写文章了,都不知道做什么好,結果还是学写了一下用Nativ ...

  3. Oracle 单实例 2个service的问题

    [oracle@PD admin]$ ps -ef | grep smon oracle 1917 1 0 Aug21 ? 00:33:51 ora_smon_podinndb oracle 2265 ...

  4. Makefile第四讲:include 引用其它makefile文件

    main.cpp #include "classes/fun.h" int main() { Test::display("Hello makefile"); ...

  5. log4net封装类 zz

    封装说明: 1.使用静态方法调用即可写入日志. 2.在日志信息写入之前,定义委托处理日志信息,便于记录日志信息之前,显示给用户. 3.添加代码配置Log4net,避免应用程序总是携带配置文件.如果需要 ...

  6. 迷宫城堡--HDOJ 1269(Tarjan)

    迷宫城堡 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submis ...

  7. Lua 中使用面向对象(续)

    上一篇文章给了一个面向对象的方案,美中不足的是没有析构函数 Destructor,那么这一次就给它加上. 既然是析构,那么就是在对象被销毁之前做该做的事情,lua 5.1 的 userdata 可以给 ...

  8. .net常見面試題(四)

    1. .Net.C#.VisualStudio之间的关系是什么? .Net一般指的是.Net Framework,提供了基础的.Net类,这些类可以被任何一种.Net编程语言调用,.Net Frame ...

  9. CentOS搭建GIT服务器【一】-仓库搭建以及基于gitosis的SSH方式访问

    1.安装GIT核心 yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-devel gcc g ...

  10. hdoj 2035 人见人爱A^B

    人见人爱A^B Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Sub ...