Linux(CentOS)下,下載安裝Nginx並配置

一、準備工做
選首先安裝這幾個軟件:GCC,PCRE(Perl Compatible Regular Expression),zlib,OpenSSL。
Nginx是C寫的,須要用GCC編譯;Nginx的Rewrite和HTTP模塊會用到PCRE;Nginx中的Gzip用到zlib;
用命令「# gcc」,查看gcc是否安裝;若是出現「gcc: no input files」信息,說明已經安裝好了。
不然,就須要用命令「# yum install gcc」,進行安裝了!一路可能須要屢次輸入y,進行確認。
安裝好後,能夠再用命令「#gcc」測試,或者用命令「# gcc -v」查看其版本號。
一樣方法,用以下命令安裝PCRE,zlib,OpenSSL(其中devel,是develop開發包的意思):nginx

  1. # yum install -y pcre pcre-devel  
  2. # yum install -y zlib zlib-devel  
  3. # yum install -y openssl openssl-devel  


二、下載並安裝
建立目錄(nginx-src)並進去;而後,從官方地址(http://nginx.org/)下載,解壓,配置,編譯,安裝:編輯器

  1. # mkdir nginx-src && cd nginx-src  
  2. # wget http://nginx.org/download/nginx-1.7.3.tar.gz  
  3. # tar xzf nginx-1.7.3.tar.gz   
  4. # cd nginx-1.7.3  
  5. # ./configure  
  6. # make  
  7. # make install  
  8. # whereis nginx  
  9. nginx: /usr/local/nginx  

默認的安裝路徑爲:/usr/local/nginx;跳轉到其目錄下sbin路徑下,即可以啓動或中止它了。ide

  1. # ./nginx -h  
  2. nginx version: nginx/1.7.3  
  3. Usage: nginx [-?hvVtq] [-s signal] [-c filename] [-p prefix] [-g directives]  
  4. Options:  
  5.   -?,-h         : this help  
  6.   -v            : show version and exit  
  7.   -V            : show version and configure options then exit  
  8.   -t            : test configuration and exit  
  9.   -q            : suppress non-error messages during configuration testing  
  10.   -s signal     : send signal to a master process: stop, quit, reopen, reload  
  11.   -p prefix     : set prefix path (default: /usr/local/nginx/)  
  12.   -c filename   : set configuration file (default: conf/nginx.conf)  
  13.   -g directives : set global directives out of configuration file  

啓動:nginx
中止:nginx -s stop

三、添加到系統服務
使用命令「# vi /etc/init.d/nginx」,打開編輯器,輸入以下內容:工具

  1. #!/bin/sh  
  2. # chkconfig: 2345 85 15  
  3. # Startup script for the nginx Web Server  
  4. # description: nginx is a World Wide Web server.   
  5. # It is used to serve HTML files and CGI.  
  6. # processname: nginx  
  7. # pidfile: /usr/local/nginx/logs/nginx.pid  
  8. # config: /usr/local/nginx/conf/nginx.conf  
  9.   
  10. PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin  
  11. DESC="nginx deamon"  
  12. NAME=nginx  
  13. DAEMON=/usr/local/nginx/sbin/$NAME  
  14. SCRIPTNAME=/etc/init.d/$NAME  
  15.   
  16. test -x $DAEMON || exit 0  
  17.   
  18. d_start(){  
  19.   $DAEMON || echo -n "already running"  
  20. }  
  21.   
  22. d_stop(){  
  23.   $DAEMON -s quit || echo -n "not running"  
  24. }  
  25.   
  26.   
  27. d_reload(){  
  28.   $DAEMON -s reload || echo -n "can not reload"  
  29. }  
  30.   
  31. case "$1" in  
  32. start)  
  33.   echo -n "Starting DESC:DESC:NAME"  
  34.   d_start  
  35.   echo "."  
  36. ;;  
  37. stop)  
  38.   echo -n "Stopping DESC:DESC:NAME"  
  39.   d_stop  
  40.   echo "."  
  41. ;;  
  42. reload)  
  43.   echo -n "Reloading $DESC conf..."  
  44.   d_reload  
  45.   echo "reload ."  
  46. ;;  
  47. restart)  
  48.   echo -n "Restarting DESC:DESC:NAME"  
  49.   d_stop  
  50.   sleep 2  
  51.   d_start  
  52.   echo "."  
  53. ;;  
  54. *)  
  55.   echo "Usage: $ScRIPTNAME {start|stop|reload|restart}" >&2  
  56.   exit 3  
  57. ;;  
  58. esac  
  59.   
  60. exit 0  

保存退出後,再使用下面的命令,使其可執行;而後,添加配置並查看。
可用chkconfig修改其值,也可用ntsysv工具改變是否自啓動。測試

      1. # chmod +x /etc/init.d/nginx  
      2. # chkconfig --add nginx  
      3. # chkconfig nginx on/off  
      4. # chkconfig --list nginx  
      5. nginx 0:off 1:off 2:on 3:on 4:on 5:on 6:off
相關文章
相關標籤/搜索