日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
CentOS上編譯安裝Nginx+實驗環(huán)境搭建+測試

    Nginx作為一款優(yōu)秀的Web Server軟件同時也是一款優(yōu)秀的負(fù)載均衡或前端反向代理、緩存服務(wù)軟件,很有必要搭建實驗環(huán)境來對其進行學(xué)習(xí)。

創(chuàng)新互聯(lián)公司是一家從事企業(yè)網(wǎng)站建設(shè)、網(wǎng)站設(shè)計制作、成都網(wǎng)站制作、行業(yè)門戶網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計制作的專業(yè)網(wǎng)站建設(shè)公司,擁有經(jīng)驗豐富的網(wǎng)站建設(shè)工程師和網(wǎng)頁設(shè)計人員,具備各種規(guī)模與類型網(wǎng)站建設(shè)的實力,在網(wǎng)站建設(shè)領(lǐng)域樹立了自己獨特的設(shè)計風(fēng)格。自公司成立以來曾獨立設(shè)計制作的站點千余家。

    本次實驗的測試環(huán)境使用的宿主機操作系統(tǒng)為windows 7,在Vmware虛擬機安裝centos 6.5,說明如下:

  • 宿主機操作系統(tǒng)Windows 7

  • 虛擬機安裝的操作系統(tǒng)CentOS 6.5

  • 虛擬機操作系統(tǒng)上網(wǎng)方式NAT

    而當(dāng)使用NAT的方式進行上網(wǎng)時虛擬機、宿主機之間的網(wǎng)絡(luò)連接關(guān)系可如下所示:

    另外需要注意的是這里安裝的CentOS 6.5操作系統(tǒng)使用了最小化安裝,并且只定制安裝了一些常用的開發(fā)工具如gcc等,其版本信息如下:

[root@linuxidc ~]
# cat /etc/RedHat-release 
CentOS release 6.5 (Final)
[root@linuxidc ~]
# uname -r
2.6.32-431.el6.x86_64
[root@linuxidc ~]
# uname -m
x86_64

(1)安裝Nginx依賴函數(shù)庫pcre

    pcre為“perl兼容正則表達(dá)式”perl compatible regular expresssions,安裝其是為了使Nginx支持具備URI重寫功能的rewrite模塊,如果不安裝Nginx將無法使用rewrite模塊功能,但是該功能卻十分有用和常用。

    檢查系統(tǒng)中是否有安裝:

[root@linuxidc ~]
# rpm -q pcre pcre-devel

    上面可以看到并沒有安裝使用yum方式安裝如下:

[root@linuxidc ~]
# yum install pcre pcre-devel -y
......
  
Installed:
 
pcre-devel.x86_64 0:7.8-7.el6                                                 
  
Updated:
 
pcre.x86_64 0:7.8-7.el6                                                       
  
Complete!

    安裝完后檢查一下是否已經(jīng)成功安裝:

[root@linuxidc ~]
# rpm -q pcre pcre-devel
pcre-7.8-7.el6.x86_64
pcre-devel-7.8-7.el6.x86_64

    可以看到已經(jīng)安裝成功。

(2)安裝Nginx依賴函數(shù)庫openssl-devel

    Nginx在使用HTTPS服務(wù)的時候要用到此模塊,如果不安裝openssl相關(guān)包,安裝過程中是會報錯的。

    檢查系統(tǒng)是否有安裝openssl相關(guān)包:

[root@linuxidc ~]
# rpm -q openssl openssl-devel 
openssl-1.0.1e-15.el6.x86_64
package openssl-devel is not installed

    可以看到只是安裝了opensslopenssl-devel還沒有安裝使用yum安裝如下:

[root@linuxidc ~]
# yum install -y openssl-devel
......
  
Complete!

    再次檢查:

[root@linuxidc ~]
# rpm -q openssl openssl-devel         
openssl-1.0.1e-48.el6_8.4.x86_64
openssl-devel-1.0.1e-48.el6_8.4.x86_64

    可以看到都已經(jīng)成功安裝上。

(3)下載Nginx軟件包

    這里使用的Nginx版本為1.6.3,下載方式如下:

[root@linuxidc ~]
# pwd
/root
[root@linuxidc ~]
# mkdir tools
[root@linuxidc ~]
# cd tools/
[root@linuxidc tools]
# wget http://nginx.org/download/nginx-1.6.3.tar.gz
......
100%[======================================>] 805,253      220K
/s   
in 
3.6s   
  
2017-02-24 12:10:26 (220 KB
/s
) - anginx-1.6.3.
tar
.gza saved [805253
/805253
]

    查看下載的Nginx軟件包:

[root@linuxidc tools]
# ll
total 788
-rw-r--r--. 1 root root 805253 Apr  8  2015 nginx-1.6.3.
tar
.gz

    當(dāng)然上面的方式是使用wget方式直接下載,前提是已經(jīng)知道了Nginx的下載地址,也可以到官網(wǎng)下載,然后再上傳到我們的CentOS操作系統(tǒng)上。

(4)開始安裝Nginx

    可以先在根目錄下創(chuàng)建一個/application文件夾用來存放我們安裝的軟件:

[root@linuxidc ~]
# mkdir /application
[root@linuxidc ~]
# ls -d /application/
/application/

  • 解壓縮

    將我們剛剛下載的Nginx軟件包解壓縮:

[root@linuxidc tools]
# tar -zxvf nginx-1.6.3.tar.gz
......
[root@linuxidc tools]
# ls
nginx-1.6.3  nginx-1.6.3.
tar
.gz

  • 使用./configure指定編譯參數(shù)

    先創(chuàng)建一個nginx用戶用來安裝完成后運行nginx使用:

[root@linuxidc tools]
# useradd nginx -s /sbin/nologin -M
[root@linuxidc tools]
# tail -1 /etc/passwd
nginx:x:500:500::
/home/nginx
:
/sbin/nologin
  
# -s參數(shù)后的/sbin/nologin指定不允許nginx進行登陸
# -M參數(shù)則是在創(chuàng)建該用戶時不創(chuàng)建用戶家目錄

    使用configure命令指定編譯參數(shù):

[root@linuxidc nginx-1.6.3]
# ./configure --user=nginx --group=nginx --prefix=/application/nginx-1.6.3/ --with-http_stub_status_module --with-http_ssl_module

    對于配置時使用的參數(shù)可以通過./configure --help來進行查詢,上面使用的參數(shù)解析如下:

--prefix=PATH       
# 指定安裝路徑
--user=USER         
# 設(shè)置用戶進程權(quán)限
--group=GROUP       
# 設(shè)置用戶組進程權(quán)限
--with-http_stub_status_module 
#  激活狀態(tài)信息
--with-http_ssl_module         
#  激活ssl功能

  • 使用make進行編譯

[root@linuxidc nginx-1.6.3]
# make
......

    檢查編譯是否成功:

[root@linuxidc nginx-1.6.3]
# echo $?
0

    返回0即說明編譯成功。

  • 使用make install安裝

[root@linuxidc nginx-1.6.3]
# make install
......

    檢查安裝是否成功:

[root@linuxidc nginx-1.6.3]
# echo $?     
0

    返回0即說明安裝成功。

  • 建立安裝目錄的軟鏈接

[root@linuxidc nginx-1.6.3]
# ln -s /application/nginx-1.6.3/ /application/nginx
[root@linuxidc nginx-1.6.3]
# ls -l /application/
total 4
lrwxrwxrwx. 1 root root   25 Feb 24 12:32 nginx -> 
/application/nginx-1
.6.3/
drwxr-xr-x. 6 root root 4096 Feb 24 12:28 nginx-1.6.3

    到此Nginx的編譯安裝工作已經(jīng)全部完成了,下面就需要對安裝結(jié)果進行驗證了即驗證Nginx是否可以正常提供服務(wù)。 

(1)啟動Nginx服務(wù)前檢查配置文件語法

    如下:

[root@linuxidc ~]
# /application/nginx/sbin/nginx -t
nginx: the configuration 
file 
/application/nginx-1
.6.3
//conf/nginx
.conf syntax is ok
nginx: configuration 
file 
/application/nginx-1
.6.3
//conf/nginx
.conf 
test 
is successful

(2)啟動Nginx服務(wù)

[root@linuxidc ~]
# /application/nginx/sbin/nginx

    如果在啟動Nginx服務(wù)時出現(xiàn)了問題可以查看Nginx的日志/application/nginx/logs/error.log,再根據(jù)日志提供的信息來進行解決。

(3)驗證Nginx服務(wù)是否正常

  • 查看已開啟的端口信息

[root@linuxidc ~]
# netstat -lnp | grep 80
tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      6772
/nginx         
unix  2      [ ACC ]     STREAM     LISTENING     9180   1
/init             
@
/com/Ubuntu/upstart

    可以看到Nginx已經(jīng)在偵聽80端口。

  • 查看Nginx進程

[root@linuxidc ~]
# ps aux | grep nginx
root       6772  0.0  0.1  45028  1140 ?        Ss   12:34   0:00 nginx: master process 
/application/nginx/sbin/nginx
nginx      6773  0.0  0.1  45460  1716 ?        S    12:34   0:00 nginx: worker process       
root       6777  0.0  0.0 103256   832 pts
/1   
S+   12:36   0:00 
grep 
nginx

  • 在宿主機上使用瀏覽器進行測試

    在我們宿主機的瀏覽器上輸入http://10.0.0.101/,查看測試結(jié)果

    可以正常訪問,當(dāng)然前提是CentOS上的防火墻功能已經(jīng)關(guān)閉。

  • 使用wget命令和curl命令測試

    wget命令:

[root@linuxidc tools]
# wget 127.0.0.1
--2017-02-24 12:41:05--  http:
//127
.0.0.1/
Connecting to 127.0.0.1:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 612 [text
/html
]
Saving to: aindex.htmla
  
100%[======================================>] 612         --.-K
/s   
in 
0s     
  
2017-02-24 12:41:05 (44.1 MB
/s
) - aindex.htmla saved [612
/612
]

    currl命令:

[root@linuxidc tools]
# curl 127.0.0.1


<
head
>
Welcome to nginx!<</code><br /> <code>/title</code><br /> <code>> </code><br /> <code><style> </code><br /> <code>    </code><br /> <code>body { </code><br /> <code>        </code><br /> <code>width: 35em; </code><br /> <code>        </code><br /> <code>margin: 0 auto; </code><br /> <code>        </code><br /> <code>font-family: Tahoma, Verdana, Arial, sans-serif; </code><br /> <code>    </code><br /> <code>} </code><br /> <code><</code><br /> <code>/style</code><br /> <code>> </code><br /> <code><</code><br /> <code>/head</code><br /> <code>> </code><br /> <code><body> </code><br /> <code><h1>Welcome to nginx!<</code><br /> <code>/h1</code><br /> <code>> </code><br /> <code><p>If you see this page, the nginx web server is successfully installed and </code><br /> <code>working. Further configuration is required.<</code><br /> <code>/p</code><br /> <code>> </code><br /> <code> </code> <br /> <code><p>For online documentation and support please refer to </code><br /> <code><a href=</code><br /> <code>"http://nginx.org/"</code><br /> <code>>nginx.org<</code><br /> <code>/a</code><br /> <code>>.<br/> </code><br /> <code>Commercial support is available at </code><br /> <code><a href=</code><br /> <code>"http://nginx.com/"</code><br /> <code>>nginx.com<</code><br /> <code>/a</code><br /> <code>>.<</code><br /> <code>/p</code><br /> <code>> </code><br /> <code> </code> <br /> <code><p><em>Thank you </code><br /> <code>for</code> <br /> <code>using nginx.<</code><br /> <code>/em</code><br /> <code>><</code><br /> <code>/p</code><br /> <code>> </code><br /> <code><</code><br /> <code>/body</code><br /> <code>> </code><br /> <code><</code><br /> <code>/html</code><br /> <code>></code> </p><p>    從上面的結(jié)果可以說明Nginx已經(jīng)正常部署并運行。 </p><p>    通過修改/application/nginx/html下的index.html文件,我們就可以改變Nginx主頁顯示的內(nèi)容,操作如下:</p><p><code>[root@linuxidc tools]</code><br /> <code># cd /application/nginx/html/ </code><br /> <code>[root@linuxidc html]</code><br /> <code># ls </code><br /> <code>50x.html  index.html </code><br /> <code>[root@linuxidc html]</code><br /> <code># mv index.html index.html.source </code><br /> <code>[root@linuxidc html]</code><br /> <code># echo "<h1>Hello, I'm linuxidc.</h1>">index.html </code><br /> <code>[root@linuxidc html]</code><br /> <code># ls </code><br /> <code>50x.html  index.html  index.html.</code><br /> <code>source</code><br /> <code>[root@linuxidc html]</code><br /> <code># cat index.html </code><br /> <code><h1>Hello, I'm linuxidc.<</code><br /> <code>/h1</code><br /> <code>></code> </p><p>    這時在宿主機操作系統(tǒng)上訪問http://10.0.0.101/</p><p>    可以看到已經(jīng)顯示我們編輯的頁面了。</p><p>    不管是用于學(xué)習(xí)還是在生產(chǎn)環(huán)境中使用,Nginx都十分重要,而好的開始是成功的一半,所以第一步當(dāng)然是要把Nginx服務(wù)搭建好。</p> <br> 網(wǎng)頁題目:CentOS上編譯安裝Nginx+實驗環(huán)境搭建+測試 <br> 當(dāng)前地址:<a href="http://www.5511xx.com/article/codghpp.html">http://www.5511xx.com/article/codghpp.html</a> </div> <div id="vb6mv12" class="hot_new"> <div id="z4f3lcb" class="page_title clearfix"> <h3>其他資訊</h3> </div> <div id="2kw4u3h" class="news_list clearfix"> <ul> <li> <a href="/article/coghhic.html">php如何讓空值不變?yōu)?值</a> </li><li> <a href="/article/coghhsi.html">全面解析Notification</a> </li><li> <a href="/article/coghhdj.html">虛擬主機過期了怎么處理</a> </li><li> <a href="/article/coghhoj.html">windows10的ip設(shè)置在哪里設(shè)置?(window10ip設(shè)置)</a> </li><li> <a href="/article/coghhsg.html">Gartner孫鑫:以戰(zhàn)略維度建設(shè)數(shù)據(jù)中臺</a> </li> </ul> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!-- 底部信息 --> <div id="udlcbsz" class="footer wow fadeInUp"> <div id="dnnmd3a" class="rowFluid"> <div id="sutlclb" class="span12"> <div id="egpqn82" class="container"> <div id="ojx4fud" class="footer_content"> <div id="d5arq2i" class="span4 col-xm-12"> <div id="t4srk6v" class="footer_list"> <div id="443lcba" class="span6"> <div id="blt3o50" class="bottom_logo"><img src="/Public/Home/images/ewm.jpg" alt="微信服務(wù)號二維碼" /></div> </div> <div id="2dd6tmn" class="span6 col-xm-12"> <div id="gy3wemv" class="quick_navigation"> <div id="h7mu8lk" class="quick_navigation_title">快速導(dǎo)航</div> <ul> <li><a title="成都茶葉銷售" target="_blank">成都茶葉銷售</a></li><li><a title="成都發(fā)電機出租" target="_blank">成都發(fā)電機出租</a></li><li><a title="成都網(wǎng)站建設(shè)" target="_blank">成都網(wǎng)站建設(shè)</a></li><li><a title="成都帕金斯柴油發(fā)電機組出租" target="_blank">成都帕金斯柴油發(fā)電機組出租</a></li><li><a title="成都網(wǎng)站設(shè)計" target="_blank">成都網(wǎng)站設(shè)計</a></li><li><a title="成都網(wǎng)站建設(shè)" target="_blank">成都網(wǎng)站建設(shè)</a></li><li><a title="活動板房" target="_blank">活動板房</a></li><li><a title="電信成都樞紐中心" target="_blank">電信成都樞紐中心</a></li><li><a title="成都企業(yè)注銷" target="_blank">成都企業(yè)注銷</a></li><li><a title="溫江網(wǎng)站制作" target="_blank">溫江網(wǎng)站制作</a></li><li><a title="成都IDC托管" target="_blank">成都IDC托管</a></li> </ul> </div> </div> </div> </div> <div id="5gddldl" class="span4 col-xm-6 col-xs-12"> <div id="s7vutbc" class="footer_list"> <div id="eoxfn8z" class="footer_link"> <div id="4cwvdul" class="footer_link_title">友情鏈接</div> <ul id="frientLinks"> <a title="網(wǎng)站制作" target="_blank">網(wǎng)站制作</a> <a title="網(wǎng)站建設(shè)" target="_blank">網(wǎng)站建設(shè)</a> <a title="成都網(wǎng)絡(luò)推廣" target="_blank">網(wǎng)絡(luò)推廣</a> <a title="成都網(wǎng)站推廣" target="_blank">網(wǎng)站推廣</a> <a title="成都微信小程序開發(fā)" target="_blank">小程序開發(fā)</a> <a title="創(chuàng)新互聯(lián)網(wǎng)站欄目導(dǎo)航" target="_blank">網(wǎng)站導(dǎo)航</a> </ul> <div id="y8c22ev" class="footer_link_title">網(wǎng)站建設(shè)</div> <ul id="frientLinks"> <li><a href="/">四川平武建站</a></li> <li><a title="創(chuàng)新互聯(lián)網(wǎng)站欄目導(dǎo)航" target="_blank">網(wǎng)站導(dǎo)航</a></li> </ul> </div> </div> </div> <div id="ghnmfnc" class="span4 col-xm-6 col-xs-12"> <div id="r8fwnv1" class="footer_list"> <div id="oi1mckb" class="footer_cotact"> <div id="v5sji8s" class="footer_cotact_title">聯(lián)系方式</div> <ul> <li><span id="44hgy2c" class="footer_cotact_type">企業(yè):</span><span id="pz8i7ii" class="footer_cotact_content">四川綿陽平武網(wǎng)站建設(shè)工作室</span></li> <li><span id="lvu7ffy" class="footer_cotact_type">地址:</span><span id="hrijajk" class="footer_cotact_content">成都市青羊區(qū)太升南路288號</span></li> <li><span id="99p9r5g" class="footer_cotact_type">電話:</span><span id="90n5em4" class="footer_cotact_content"><a href="tel:18980820575" class="call">18980820575</a></span></li> <li><span id="bmmdddm" class="footer_cotact_type">網(wǎng)址:</span><span id="ngf7437" class="footer_cotact_content"><a href="/" title="四川平武網(wǎng)站建設(shè)">www.5511xx.com</a></span></li> </ul> </div> </div> </div> </div> </div> <div id="9z34yqv" class="copyright"> <p>公司名稱:四川綿陽平武網(wǎng)站建設(shè)工作室 聯(lián)系電話:18980820575</p> <p><a target="_blank" rel="nofollow">網(wǎng)站備案號:蜀ICP備2024061352號-3</a></p> <p>四川平武建站 四川平武網(wǎng)站建設(shè) 四川平武網(wǎng)站設(shè)計 四川平武網(wǎng)站制作 <a target="_blank">成都做網(wǎng)站</a></p> </div> </div> </div> </div> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://www.5511xx.com/" title="日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区">日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区</a> <div class="friend-links"> <a href="http://www.stangekirke.net">黄色Av中文板狠狠干伊人|夜夜嗨AV综合黄色A毛片|无码成人AV在线看免费|日韩黄片免费试看|夜间视频无码日韩a片老牛|成人亚洲免费AV在线看|国产二区在线播放|成人嫩草AV网址|99视频偷拍偷拍|在线成人图片观看</a> <a href="http://www.annearundelcountylife.com">AV每日更新不卡|无码av丝袜高跟鞋|伊人视频精品久久亚洲国产|影音先锋日本无码|91色婷婷一区二区在线|免费不卡一区二区三区|国产精选无码AV|一区二区色情国产韩国精品一|在线播放av导航|成人无码视频在线看</a> <a href="http://www.thanxmkt.com">久草影视探花一级片少妇|综合色网在线播放|av天堂婷婷视频黄片|视频一区 国产精品|亚洲人成人毛片无遮挡|亚洲在线观看av在线观影|欧美特黄A级毛片|亚洲精品线路在线观看|日韩精品A片一区二区三区|亚洲岛国无码一区二区</a> </div> </div> </footer> <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body><div id="yemoo" class="pl_css_ganrao" style="display: none;"><li id="yemoo"><blockquote id="yemoo"></blockquote></li><nobr id="yemoo"><form id="yemoo"></form></nobr><pre id="yemoo"><bdo id="yemoo"></bdo></pre><input id="yemoo"></input><tbody id="yemoo"><pre id="yemoo"></pre></tbody><var id="yemoo"></var><ol id="yemoo"></ol><thead id="yemoo"><strong id="yemoo"></strong></thead><style id="yemoo"></style><mark id="yemoo"></mark><thead id="yemoo"></thead><bdo id="yemoo"><video id="yemoo"></video></bdo><rt id="yemoo"><nobr id="yemoo"></nobr></rt><blockquote id="yemoo"><ol id="yemoo"></ol></blockquote><menuitem id="yemoo"></menuitem><pre id="yemoo"><legend id="yemoo"></legend></pre><object id="yemoo"></object><video id="yemoo"></video><address id="yemoo"></address><p id="yemoo"><abbr id="yemoo"></abbr></p><thead id="yemoo"><optgroup id="yemoo"></optgroup></thead><style id="yemoo"><mark id="yemoo"></mark></style><mark id="yemoo"></mark><big id="yemoo"><dl id="yemoo"></dl></big><td id="yemoo"><cite id="yemoo"></cite></td><small id="yemoo"><track id="yemoo"></track></small><menuitem id="yemoo"></menuitem><listing id="yemoo"><dfn id="yemoo"></dfn></listing><mark id="yemoo"><tbody id="yemoo"></tbody></mark><thead id="yemoo"><optgroup id="yemoo"></optgroup></thead><address id="yemoo"><rt id="yemoo"></rt></address><center id="yemoo"><legend id="yemoo"></legend></center><blockquote id="yemoo"></blockquote><li id="yemoo"></li><cite id="yemoo"></cite><mark id="yemoo"><tbody id="yemoo"></tbody></mark><legend id="yemoo"><cite id="yemoo"></cite></legend><font id="yemoo"><th id="yemoo"></th></font><strong id="yemoo"><thead id="yemoo"></thead></strong><nobr id="yemoo"><pre id="yemoo"></pre></nobr><small id="yemoo"></small><address id="yemoo"></address><source id="yemoo"></source><pre id="yemoo"><style id="yemoo"></style></pre><abbr id="yemoo"></abbr><blockquote id="yemoo"><dl id="yemoo"></dl></blockquote><nobr id="yemoo"><pre id="yemoo"></pre></nobr><rt id="yemoo"><nobr id="yemoo"></nobr></rt><pre id="yemoo"></pre><nav id="yemoo"><u id="yemoo"></u></nav></div> </html>