nginx編譯安裝

1.安裝依賴(lài)

[root@web src]# yum install pcre zlibopenssl -y

2.源碼安裝Nginx

(1).解壓源碼包

[root@web src]# tar xfnginx-1.4.2.tar.gz

[root@web src]# cd nginx-1.4.2

(2).創(chuàng)建軟鏈接

[root@web local]# ln -sv nginx-1.4.2nginx

"nginx" ->"nginx-1.4.2"

[root@web local]# cd nginx

[root@web nginx]# ll

總用量588

drwxr-xr-x 6 1001 10014096 8月29 17:32 auto

-rw-r--r-- 1 1001 1001 222366 7月17 20:51 CHANGES

-rw-r--r-- 1 1001 1001 338680 7月17 20:51 CHANGES.ru

drwxr-xr-x 2 1001 10014096 8月29 17:32 conf

-rwxr-xr-x 1 1001 10012369 7月17 20:51 configure

drwxr-xr-x 3 1001 10014096 8月29 17:32 contrib

drwxr-xr-x 2 1001 10014096 8月29 17:32 html

-rw-r--r-- 1 1001 10011397 7月17 20:51 LICENSE

drwxr-xr-x 2 1001 10014096 8月29 17:32 man

-rw-r--r-- 1 1001 100149 7月17 20:51 README

drwxr-xr-x 8 1001 10014096 8月29 17:32 src

(3).新建nginx用戶

[root@web nginx]# groupadd -g 108-r nginx

[root@web nginx]# useradd -u 108 -r -g 108nginx

[root@web nginx]# id nginx

uid=108(nginx) gid=108(nginx)組=108(nginx)

(4).修改權(quán)限

[root@web nginx]# chown -R root:nginx/usr/local/nginx/*

[root@web nginx]# ll

總用量588

drwxr-xr-x 6 root nginx4096 8月29 17:32 auto

-rw-r--r-- 1 root nginx 222366 7月17 20:51 CHANGES

-rw-r--r-- 1 root nginx 338680 7月17 20:51 CHANGES.ru

drwxr-xr-x 2 root nginx4096 8月29 17:32 conf

-rwxr-xr-x 1 root nginx2369 7月17 20:51 configure

drwxr-xr-x 3 root nginx4096 8月29 17:32 contrib

drwxr-xr-x 2 root nginx4096 8月29 17:32 html

-rw-r--r-- 1 root nginx1397 7月17 20:51 LICENSE

drwxr-xr-x 2 root nginx4096 8月29 17:32 man

-rw-r--r-- 1 root nginx49 7月17 20:51 README

drwxr-xr-x 8 root nginx4096 8月29 17:32 src

(5).編譯nginx

[root@web nginx]# yum -y install pcre-devel

#

./configure--prefix=/usr--sbin-path=/usr/sbin/nginx--conf-path=/etc/nginx/nginx.conf --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 --user=nginx --group=nginx--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 --with-pcre

注榨汤,編譯過(guò)程中會(huì)出錯(cuò),下面是錯(cuò)誤信息积锅。

錯(cuò)誤1:

./configure: error: SSL modules require theOpenSSL library.

You can either do not enable the modules,or install the OpenSSL library

into the system, or build the OpenSSLlibrary statically from the source

with nginx by using--with-openssl= option.

解決1:

# yum install -y openssl-devel

再來(lái)編譯一下许溅,

# ./configure--prefix=/usr--sbin-path=/usr/sbin/nginx--conf-path=/etc/nginx/nginx.conf--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--user=nginx--group=nginx--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

出現(xiàn)在下面的選項(xiàng)說(shuō)明編譯成功韭脊,

Configuration summary

+using system PCRE library

+using system OpenSSL library

+md5: using OpenSSL library

+sha1: using OpenSSL library

+using system zlib library

nginx path prefix: "/usr"

nginx binary file: "/usr/sbin/nginx"

nginx configuration prefix: "/etc/nginx"

nginx configuration file: "/etc/nginx/nginx.conf"

nginx pid file: "/var/run/nginx/nginx.pid"

nginx error log file: "/var/log/nginx/error.log"

nginx http access log file: "/var/log/nginx/access.log"

nginx http client request body temporary files: "/var/tmp/nginx/client/"

nginx http proxy temporary files: "/var/tmp/nginx/proxy/"

nginx http fastcgi temporary files:"/var/tmp/nginx/fcgi/"

nginx http uwsgi temporary files: "/var/tmp/nginx/uwsgi"

nginx http scgi temporary files: "/var/tmp/nginx/scgi"

# make && make install

3.為nginx提供SysV init腳本

# vim/etc/init.d/nginx

#!/bin/sh

#

# nginx - this script starts and stops thenginx daemon

#

# chkconfig:- 85 15

# description:Nginx is an HTTP(S) server, HTTP(S) reverse\

#proxy and IMAP/POP3 proxyserver

# processname: nginx

# config:/etc/nginx/nginx.conf

# config:/etc/sysconfig/nginx

# pidfile:/var/run/nginx.pid

# 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/sbin/nginx"

prog=$(basename $nginx)

NGINX_CONF_FILE="/etc/nginx/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: "

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

4.為此腳本賦予執(zhí)行權(quán)限

[root@web ~]# chmod +x /etc/init.d/nginx

10.添加至服務(wù)管理列表,并讓其開(kāi)機(jī)自動(dòng)啟動(dòng)

[root@web ~]# chmod +x/etc/init.d/nginx

[root@web ~]# chkconfig --add nginx

[root@web ~]# chkconfig nginx on

[root@web ~]# chkconfig --list nginx

nginx0:關(guān)閉1:關(guān)閉2:啟用3:啟用4:啟用5:啟用6:關(guān)閉

5.啟動(dòng)nginx

[root@web ~]# service nginx start

正在啟動(dòng)nginx:[確定]

6.查看一下端口號(hào)

[root@web ~]# netstat -ntulp

Active Internet connections (onlyservers)

Proto Recv-Q Send-Q Local AddressForeign AddressStatePID/Program name

tcp00 0.0.0.0:800.0.0.0:*LISTEN4801/nginx

tcp00 0.0.0.0:220.0.0.0:*LISTEN1033/sshd

tcp00 127.0.0.1:250.0.0.0:*LISTEN1110/master

tcp00 127.0.0.1:60100.0.0.0:*LISTEN1144/sshd

tcp00 127.0.0.1:60110.0.0.0:*LISTEN1203/sshd

tcp00 :::22:::*LISTEN1033/sshd

tcp00 ::1:25:::*LISTEN1110/master

tcp00 ::1:6010:::*LISTEN1144/sshd

tcp00 ::1:6011:::*LISTEN1203/sshd

7.測(cè)試訪問(wèn)一下

7?YbXgW

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市制恍,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌神凑,老刑警劉巖净神,帶你破解...
    沈念sama閱讀 212,294評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件何吝,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡鹃唯,警方通過(guò)查閱死者的電腦和手機(jī)爱榕,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,493評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)坡慌,“玉大人呆细,你說(shuō)我怎么就攤上這事“私常” “怎么了絮爷?”我有些...
    開(kāi)封第一講書(shū)人閱讀 157,790評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)梨树。 經(jīng)常有香客問(wèn)我坑夯,道長(zhǎng),這世上最難降的妖魔是什么抡四? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,595評(píng)論 1 284
  • 正文 為了忘掉前任柜蜈,我火速辦了婚禮,結(jié)果婚禮上指巡,老公的妹妹穿的比我還像新娘淑履。我一直安慰自己,他們只是感情好藻雪,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,718評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布秘噪。 她就那樣靜靜地躺著,像睡著了一般勉耀。 火紅的嫁衣襯著肌膚如雪指煎。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,906評(píng)論 1 290
  • 那天便斥,我揣著相機(jī)與錄音至壤,去河邊找鬼。 笑死枢纠,一個(gè)胖子當(dāng)著我的面吹牛像街,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播晋渺,決...
    沈念sama閱讀 39,053評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼镰绎,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了些举?” 一聲冷哼從身側(cè)響起跟狱,我...
    開(kāi)封第一講書(shū)人閱讀 37,797評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎户魏,沒(méi)想到半個(gè)月后驶臊,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體挪挤,經(jīng)...
    沈念sama閱讀 44,250評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,570評(píng)論 2 327
  • 正文 我和宋清朗相戀三年关翎,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了扛门。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,711評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡纵寝,死狀恐怖论寨,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情爽茴,我是刑警寧澤葬凳,帶...
    沈念sama閱讀 34,388評(píng)論 4 332
  • 正文 年R本政府宣布,位于F島的核電站室奏,受9級(jí)特大地震影響火焰,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜胧沫,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,018評(píng)論 3 316
  • 文/蒙蒙 一昌简、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧绒怨,春花似錦纯赎、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,796評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至碎紊,卻和暖如春佑附,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背仗考。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,023評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留词爬,地道東北人秃嗜。 一個(gè)月前我還...
    沈念sama閱讀 46,461評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像顿膨,于是被迫代替她去往敵國(guó)和親锅锨。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,595評(píng)論 2 350

推薦閱讀更多精彩內(nèi)容