centos7 安裝nginx

http://www.cnblogs.com/vicowong/p/4158113.html更換了部分包位置 抑党,僅記錄


安裝步驟:

1.準備

1.1 顯示系統(tǒng)版本

[root@centos ~]# cat /etc/redhat-release

CentOS Linux release 7.0.1406 (Core)

[root@centos ~]# uname -a

Linux tCentos7 3.10.0-123.13.1.el7.x86_64 #1 SMP Tue Dec 9 23:06:09 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

1.2 安裝基本軟件包

[root@centos ~]# yum install vim wget lsof gcc gcc-c++ bzip2 -y

[root@centos ~]# yum install net-tools bind-utils -y

1.3 顯示IP地址 (centos7需要先安裝 net-tools bind-utils包)

[root@centos ~]# ifconfig|grep inet

inet 192.168.1.10 netmask 255.255.255.0 broadcast 192.168.1.255

2.編譯安裝nginx

2.1 下載包

[root@centos ~]# cd /usr/local/src/

[root@centos ~]# wget http://nginx.org/download/nginx-1.6.2.tar.gz

[root@centos ~]# wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.41.tar.gz

[root@centos ~]# wget http://zlib.net/zlib-1.2.11.tar.gz

[root@centos ~]# wget http://www.openssl.org/source/openssl-1.0.2l.tar.gz

[root@centos ~]# wget https://github.com/jemalloc/jemalloc/releases/download/4.2.1/jemalloc-4.2.1.tar.bz2

2.2 安裝依賴

[root@centos ~]# yum install zlib-devel openssl-devel -y

2.3 關(guān)閉selinux (不關(guān)有時會添加不了用戶,或者重啟后沒法開機)

[root@centos ~]#??vim /etc/selinux/config

屏蔽以下兩行

#SELINUX=enforcing

#SELINUXTYPE=targeted

添加以下一行

SELINUXTYPE=disabled

保存姓言,退出

重啟后,查詢是否關(guān)閉(顯示Disabled則表示關(guān)閉)

[root@centos ~]# ?shutdown -r now

[root@centos ~]# ?getenforce

Disabled

2.4 安裝Pcre

[root@centos ~]# cd /usr/local/src/

[root@centos ~]# tar zvxf pcre-8.41.tar.gz

[root@centos ~]# cd pcre-8.41

[root@centos ~]# ./configure

[root@centos ~]# make && make install

2.5 安裝openssl

[root@centos ~]# cd /usr/local/src/

[root@centos ~]# tar zvxf openssl-1.0.2l.tar.gz

[root@centos ~]# cd openssl-1.0.2l

[root@centos ~]# ./config

[root@centos ~]# make && make install

2.6 安裝zlib

[root@centos ~]# cd /usr/local/src/

[root@centos ~]# tar zvxf zlib-1.2.11.tar.gz

[root@centos ~]# cd zlib-1.2.11

[root@centos ~]# ./configure

[root@centos ~]# make && make install

2.7 安裝jemalloc

[root@centos ~]# cd /usr/local/src/

[root@centos ~]# tar xjf jemalloc-4.2.1.tar.bz2

[root@centos ~]# cd jemalloc-4.2.1

[root@centos ~]# ./configure

[root@centos ~]# make && make install

[root@centos ~]# echo '/usr/local/lib' > /etc/ld.so.conf.d/local.conf

[root@centos ~]# ldconfig

2.3 創(chuàng)建www用戶和組畔裕,創(chuàng)建www虛擬主機使用的目錄秽五,以及Nginx使用的日志目錄,并且賦予他們適當?shù)臋?quán)限

[root@centos ~]# groupadd www

[root@centos ~]# useradd -g www www -s /sbin/nologin

[root@centos ~]# mkdir -p /data/www

[root@centos ~]# chmod +w /data/www

[root@centos ~]# chown -R www:www /data/www

***如果沒法創(chuàng)建用戶瞬痘,需要檢查SELinux狀態(tài)是否關(guān)閉

2.8 安裝nginx

[root@centos ~]# cd /usr/local/src/

[root@centos ~]# tar zvxf nginx-1.6.2.tar.gz

[root@centos ~]# cd nginx-1.6.2

[root@centos ~]# ./configure --prefix=/opt/nginx --user=www --group=www --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-openssl=/usr/local/download/openssl-1.0.2l --with-zlib=/usr/local/download/zlib-1.2.11 --with-pcre=/usr/local/download/pcre-8.41 --with-ld-opt="-ljemalloc"

[root@centos ~]# make && make install

2.9 修改 nginx.conf

[root@centos ~]# vim /opt/nginx/conf/nginx.conf

修改前面幾行為:

user www www;

worker_processes auto;

error_log logs/error.log crit;

pid logs/nginx.pid;

events{

use epoll;

worker_connections 65535;

}

找到故慈,并修改 root 行的內(nèi)容

location / {

root /data/www;

index index.html index.htm;

}

保存,退出

2.10 建立測試首頁

[root@centos ~]# vim /data/www/index.html

nginx index.html

index.html

保存框全,退出

2.11 測試和運行

[root@centos ~]# cd /opt/nginx

[root@centos ~]# ldconfig

[root@centos ~]# ./sbin/nginx -c /opt/nginx/conf/nginx.conf -t

如果顯示下面信息闽寡,即表示配置沒問題

nginx: the configuration file /opt/nginx/conf/nginx.conf syntax is ok

nginx: configuration file /opt/nginx/conf/nginx.conf test is successful

查看jemalloc是否生效喳张,需要先啟動nginx

[root@centos ~]# ./sbin/nginx -c /opt/nginx/conf/nginx.conf

[root@centos ~]# lsof -n | grep jemalloc

ginx 2346 root mem REG 253,1 1824470 51571788 /usr/local/lib/libjemalloc.so.1

nginx 2347 www mem REG 253,1 1824470 51571788 /usr/local/lib/libjemalloc.so.1

nginx 2348 www mem REG 253,1 1824470 51571788 /usr/local/lib/libjemalloc.so.1

nginx 2349 www mem REG 253,1 1824470 51571788 /usr/local/lib/libjemalloc.so.1

nginx 2350 www mem REG 253,1 1824470 51571788 /usr/local/lib/libjemalloc.so.1

2.12 防火墻添加80端口

[root@centos ~]# iptables -L|grep ACCEPT

[root@centos ~]# firewall-cmd --zone=public --add-port=80/tcp --permanent

[root@centos ~]# firewall-cmd --reload

[root@centos ~]# iptables -L|grep ACCEPT

2.13 瀏覽器打開

http://192.168.1.10

顯示出歡迎內(nèi)容贷揽,則表示成功

2.14 作為服務(wù)施无,開機后啟動

[root@centos ~]# vim /usr/lib/systemd/system/nginx.service

增加以下內(nèi)容

[Unit]

Description=The nginx HTTP and reverse proxy server

After=syslog.target network.target remote-fs.target nss-lookup.target

[Service]

Type=forking

PIDFile=/opt/nginx/logs/nginx.pid

ExecStartPre=/opt/nginx/sbin/nginx -c /opt/nginx/conf/nginx.conf -t

ExecStart=/opt/nginx/sbin/nginx -c /opt/nginx/conf/nginx.conf

ExecReload=/bin/kill -s HUP $MAINPID

ExecStop=/bin/kill -s QUIT $MAINPID

PrivateTmp=true

[Install]

WantedBy=multi-user.target

:wq 保存退出

[root@centos ~]# systemctl enable nginx.service

[root@centos ~]# systemctl list-unit-files|grep enabled|grep nginx

2.15 啟動服務(wù)

[root@centos ~]#?./sbin/nginx -s stop

[root@centos ~]# systemctl daemon-reload

[root@centos ~]# systemctl start nginx.service

[root@centos ~]# systemctl status nginx.service -l

[root@centos ~]# ps -ef|grep nginx

[root@centos ~]# lsof -n | grep jemalloc

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市喘沿,隨后出現(xiàn)的幾起案子闸度,更是在濱河造成了極大的恐慌,老刑警劉巖蚜印,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件莺禁,死亡現(xiàn)場離奇詭異,居然都是意外死亡窄赋,警方通過查閱死者的電腦和手機哟冬,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來忆绰,“玉大人浩峡,你說我怎么就攤上這事〈砀遥” “怎么了翰灾?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長稚茅。 經(jīng)常有香客問我纸淮,道長,這世上最難降的妖魔是什么峰锁? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮双戳,結(jié)果婚禮上虹蒋,老公的妹妹穿的比我還像新娘。我一直安慰自己飒货,他們只是感情好魄衅,可當我...
    茶點故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著塘辅,像睡著了一般晃虫。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上扣墩,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天哲银,我揣著相機與錄音扛吞,去河邊找鬼。 笑死荆责,一個胖子當著我的面吹牛滥比,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播做院,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼盲泛,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了键耕?” 一聲冷哼從身側(cè)響起寺滚,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎屈雄,沒想到半個月后村视,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡棚亩,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年蓖议,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片讥蟆。...
    茶點故事閱讀 38,137評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡勒虾,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出瘸彤,到底是詐尸還是另有隱情修然,我是刑警寧澤,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布质况,位于F島的核電站愕宋,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏结榄。R本人自食惡果不足惜中贝,卻給世界環(huán)境...
    茶點故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望臼朗。 院中可真熱鬧邻寿,春花似錦、人聲如沸视哑。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽挡毅。三九已至蒜撮,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間跪呈,已是汗流浹背段磨。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工取逾, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人薇溃。 一個月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓菌赖,卻偏偏與公主長得像,于是被迫代替她去往敵國和親沐序。 傳聞我的和親對象是個殘疾皇子琉用,可洞房花燭夜當晚...
    茶點故事閱讀 42,901評論 2 345

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