Nginx和Tengine的詳細安裝圖文教程(Linux下)


 

 

 

 

 

 

 

 簡潔安裝

  1. 安裝依賴 yum -y install gcc openssl-devel pcre-devel zlib-devel
  2. 編譯三步走./configure \

  --prefix=/opt/sxt/soft/tengine-2.1.0/ \

  --error-log-path=/var/log/nginx/error.log \

  --http-log-path=/var/log/nginx/access.log \

  --pid-path=/var/run/nginx/nginx.pid  \

  --lock-path=/var/lock/nginx.lock \

  --with-http_ssl_module \

  --with-http_flv_module \

  --with-http_stub_status_module \

  --with-http_gzip_static_module \

  --http-client-body-temp-path=/var/tmp/nginx/client/ \

  --http-proxy-temp-path=/var/tmp/nginx/proxy/ \

  --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \

  --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \

  --http-scgi-temp-path=/var/tmp/nginx/scgi \

  --with-pcre

make && make install

  3.注意:一定要從windows復制粘貼過來

在/etc/init.d下面建立nginx文件,粘貼內容,修改路徑

  4.修改ngxin文件執行權限

  5.配置chkconfig

 

 

 

寫在前面的話

  能看我本博文的朋友,是需要有一定的基礎!可以去看我的分類欄里Nginx / Tengine。

  Tengine的百度百科:http://baike.baidu.com/link?url=0SDDMdkr6vKPJ42XCoYUYgng0PNFMQQdKWS5dFwUl_uqvs9WxggKPY7nb9P1_E4svVG-AYkacnyH3Z-K1onu_q

 

 

步驟一:下載tengine-2.1.0.tar.gz壓縮包(當然也可以在線安裝)、上傳和解壓

 

 

   步驟二:模仿並寫出我們自己需要的Nginx服務文件

 

/etc/init.d里,都是一些注冊啟動服務。

 

 

#!/bin/bash
#
# chkconfig: - 85 15
# description: nginx is a World Wide Web server. It is used to serve
# 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/tengine-2.1/sbin/nginx"
prog=$(basename $nginx)

NGINX_CONF_FILE="/usr/tengine-2.1/conf/nginx.conf"

#[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx

lockfile=/var/lock/subsys/nginx

#make_dirs() {
# # make required directories
# user=`nginx -V 2>&1 | grep "configure arguments:" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -`
# options=`$nginx -V 2>&1 | grep 'configure arguments:'`
# for opt in $options; do
# if [ `echo $opt | grep '.*-temp-path'` ]; then
# value=`echo $opt | cut -d "=" -f 2`
# if [ ! -d "$value" ]; then
# # echo "creating" $value
# mkdir -p $value && chown -R $user $value
# fi
# fi
# done
#}

start() {
[ -x $nginx ] || exit 5
[ -f $NGINX_CONF_FILE ] || exit 6
# make_dirs
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
sleep 1
start
}

reload() {
configtest || return $?
echo -n $"Reloading $prog: "
# -HUP是nginx平滑重啟參數
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

 

 

   步驟三:

  1. 編譯三步走./configure \

  --prefix=/opt/sxt/soft/tengine-2.1.0/ \

  --error-log-path=/var/log/nginx/error.log \

  --http-log-path=/var/log/nginx/access.log \

  --pid-path=/var/run/nginx/nginx.pid  \

  --lock-path=/var/lock/nginx.lock \

  --with-http_ssl_module \

  --with-http_flv_module \

  --with-http_stub_status_module \

  --with-http_gzip_static_module \

  --http-client-body-temp-path=/var/tmp/nginx/client/ \

  --http-proxy-temp-path=/var/tmp/nginx/proxy/ \

  --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \

  --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \

  --http-scgi-temp-path=/var/tmp/nginx/scgi \

  --with-pcre 

 

  在這一步,下載依賴,也許自己會報某些錯誤,需要自行去解決!

 

步驟四:

make && make install

 

 

 步驟五:一定要 vi新建nginx啊!

  1. 注意:一定要從windows復制粘貼過來

在/etc/init.d下面建立nginx文件,粘貼內容

 

 

步驟六:修改nginx

修改路徑

 

 

 

改為

 

 

 

 

步驟七:修改ngxin文件執行權限

 

 

 

步驟八:這就是為什么,步驟五的重要性

 

 

 

 

 

步驟九:

 

  全部完成!

 

 

 

 

 

總結

一.第一章:nginx使用場景,編譯安裝nginx,加入到啟動服務

2.編譯安裝nginx,加入到啟動服務

1.  ./configure --prefix=/usr/tengine

2.  make && make install

 

  1. 將nginx里面內容拷貝(注意這里不要上傳文件,會有編碼問題)到/etc/init.d、目錄下
  2. 修改軟件安裝路徑如圖:

 

  1. 修改nginx文件的執行權限

         chmod +x nginx

  1. 添加該文件到系統服務中去

         chkconfig --add nginx

         查看是否添加成功

         chkconfig --list nginx

啟動,停止,重新裝載

service nginx start|stop|reload

htttpd

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM