簡潔安裝nginx
--prefix=/opt/sxt/soft/tengine-2.1.0/ \windows
--error-log-path=/var/log/nginx/error.log \bash
--http-log-path=/var/log/nginx/access.log \ide
--pid-path=/var/run/nginx/nginx.pid \ui
--lock-path=/var/lock/nginx.lock \編碼
--with-http_ssl_module \url
--with-http_flv_module \spa
--with-http_stub_status_module \3d
--with-http_gzip_static_module \rest
--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
步驟三:
--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啊!
在/etc/init.d下面創建nginx文件,粘貼內容
步驟六:修改nginx
修改路徑
將
改成
步驟七:修改ngxin文件執行權限
步驟八:這就是爲何,步驟五的重要性
步驟九:
所有完成!
總結
1. ./configure --prefix=/usr/tengine
2. make && make install
chmod +x nginx
chkconfig --add nginx
查看是否添加成功
chkconfig --list nginx
啓動,中止,從新裝載
service nginx start|stop|reload
htttpd