>
目錄
- 原因:
- 解決方案
- 一、安裝lnmp環(huán)境
- 二、更改Nginx訪問的80端口
- 三,關(guān)閉防火墻
- 四,重啟Nginx服務(wù)&重載Nginx配置文件
原因:
公司的服務(wù)器上面有java的環(huán)境,現(xiàn)在需求是在部署一個(gè)php的環(huán)境(lnmp),也沒有這么弄過,通過百度,搜索了一下相關(guān)的資料。不要擔(dān)心裝完php環(huán)境會(huì)影響java的環(huán)境,這是兩個(gè)不同的環(huán)境,不會(huì)受到印象。只要注意一下幾點(diǎn)沒問題了:
- 1,Nginx跟Tomcat是屬于兩個(gè)服務(wù)器,但是都會(huì)用到80端口。這樣的問題就是要么就Tomcat修改默認(rèn)端口。要么就Nginx修改。那Nginx是后來的,只好Nginx修改了。
- 2,在使用yum一鍵安裝lnmp的時(shí)候有“mysql”,“php”,“Nginx”等,顧名思義,我們要修改這個(gè)安裝信息。因?yàn)槎际莔ysql數(shù)據(jù)庫(kù)可以公用一個(gè)即可。根據(jù)自己的需求來進(jìn)行配置yum命令。
解決方案
一、安裝lnmp環(huán)境
1,復(fù)制到xshell里面執(zhí)行即可。
[root@iZm5e8nyz28v9zr7lhb7moZ install]# wget -c http://mirrors.linuxeye.com/oneinstack-full.tar.gz && tar xzf oneinstack-full.tar.gz && ./oneinstack/install.sh --nginx_option 1 --php_option 7 --phpcache_option 1 --phpmyadmin --mphp_ver 56 --pureftpd --memcached --iptables --reboot
2,這個(gè)時(shí)候PHP很霸道。果斷的把80的端口給搶過來了。我同事用ip訪問他的項(xiàng)目的時(shí)候,他說報(bào)錯(cuò)了。我一看下面是404,瀏覽器提示Nginx。我恍然大悟,在Nginx服務(wù)器上面沒有部署過這個(gè)項(xiàng)目,路徑找不到。那么我需要把80端口還給Tomcat,所以根據(jù)以二的步驟,修改Nginx默認(rèn)的80端口
PS:80端口作為http協(xié)議的默認(rèn)端口,在輸入網(wǎng)站的時(shí)候其實(shí)瀏覽器(非IE)已經(jīng)幫忙輸入?yún)f(xié)議了。所以這樣一來,如果輸入http://baidu.com,其實(shí)就等于訪問http://baidu.com:80。
二、更改Nginx訪問的80端口
1,打開:vim /usr/local/nginx/conf/nginx.conf
[root@iZ28qtbhs9vZ ~]# vim /usr/local/nginx/conf/nginx.conf
2,找到service部分,其他的都不需要管。修改“listen 8080(可以隨便寫,建議不要占用系統(tǒng)端口)”,“server_name 你的公網(wǎng)ip”,以下為修改后的:
server { listen 8080; server_name 你的公網(wǎng)ip; access_log /data/wwwlogs/access_nginx.log combined; root /data/wwwroot/default; index index.html index.htm index.php; #error_page 404 /404.html; #error_page 502 /502.html; location /nginx_status { stub_status on; access_log off; allow 127.0.0.1; deny all; }
修改前:
server { listen 80; server_name _; access_log /data/wwwlogs/access_nginx.log combined; root /data/wwwroot/default; index index.html index.htm index.php; #error_page 404 /404.html; #error_page 502 /502.html; location /nginx_status { stub_status on; access_log off; allow 127.0.0.1; deny all; }
三,關(guān)閉防火墻
1,centos版本不同,關(guān)閉的方式不同。我的版本是6.9。service iptables stop
[root@iZm5e8nyz28v9zr7lhb7moZ install]# service iptables stopiptables: Setting chains to policy ACCEPT: filter [ OK ]iptables: Flushing firewall rules: [ OK ]iptables: Unloading modules: [ OK ][root@iZm5e8nyz28v9zr7lhb7moZ install]#
四,重啟Nginx服務(wù)&重載Nginx配置文件
1,執(zhí)行命令:/etc/init.d/nginx restart
[root@iZm5e8nyz28v9zr7lhb7moZ install]# service iptables stop iptables: Setting chains to policy ACCEPT: filter [ OK ] iptables: Flushing firewall rules: [ OK ] iptables: Unloading modules: [ OK ] [root@iZm5e8nyz28v9zr7lhb7moZ install]#
2,執(zhí)行:/usr/local/nginx/sbin/nginx -s reload
[root@iZ28qtbhs9vZ ~]# /usr/local/nginx/sbin/nginx -s reload [root@iZ28qtbhs9vZ ~]#
我們?nèi)ピL問一下吧
>