這篇文章主要講解了“Centos6.5下怎么安裝tomcat 9.0版本”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Centos6.5下怎么安裝tomcat 9.0版本”吧!
這篇文章主要講解了“Centos6.5下怎么安裝tomcat 9.0版本”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Centos6.5下怎么安裝tomcat 9.0版本”吧!
創(chuàng)新互聯(lián)自成立以來,一直致力于為企業(yè)提供從網(wǎng)站策劃、網(wǎng)站設(shè)計、網(wǎng)站設(shè)計制作、成都網(wǎng)站建設(shè)、電子商務(wù)、網(wǎng)站推廣、網(wǎng)站優(yōu)化到為企業(yè)提供個性化軟件開發(fā)等基于互聯(lián)網(wǎng)的全面整合營銷服務(wù)。公司擁有豐富的網(wǎng)站建設(shè)和互聯(lián)網(wǎng)應(yīng)用系統(tǒng)開發(fā)管理經(jīng)驗、成熟的應(yīng)用系統(tǒng)解決方案、優(yōu)秀的網(wǎng)站開發(fā)工程師團隊及專業(yè)的網(wǎng)站設(shè)計師團隊。
2.如何安裝tomcat 9.0版本
2.1 下載apache-tomcat-9.0.0.M13.tar文件
2.2 解壓文件到 /tomcat目錄下:
tar -zxvf apache-tomcat-9.0.0.M13.tar /tomcat
2.3 進入解壓目錄的bin文件夾,運行命令./startup.sh
會自動彈出像如下的提示:
Using CATALINA_BASE: /tomcat/apache-tomcat-9.0.0.M13
Using CATALINA_HOME: /tomcat/apache-tomcat-9.0.0.M13
Using CATALINA_TMPDIR: /tomcat/apache-tomcat-9.0.0.M13/temp
Using JRE_HOME: /usr
Using CLASSPATH: /tomcat/apache-tomcat-9.0.0.M13/bin/bootstrap.jar:/tomcat/apache-tomcat-9.0.0.M13/bin/tomcat-juli.jar
Tomcat started.
2.4 安裝完tomcat后增加用戶:
編輯 ..\conf\tomcat-users.xml 文件
在 <tomcat-user> 段落中增加以下幾行:
<role rolename="manager-gui"/>
<role rolename="manager-script"/>
<role rolename="admin-gui"/>
<role rolename="admin-script"/>
<role rolename="tomcat-gui"/>
<user username="admin" password="12345" roles="standard,manager-gui,manager-script,admin-gui,admin-script,tomcat-gui"/>
</tomcat-user>
2.5 停止服務(wù):./shutdown.sh
2.6 修改tomcat默認的端口:
進入 ./conf/server.xml文件,將
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
中port="8080"修改為port="80"
2.7 登陸tomcat
http://127.0.0.1:80 (默認的80端口可以省略,如果是其他的端口則必須加上)
2.8 如果在登陸到tomcat后選擇 host manager后出現(xiàn)403錯誤,在下面的文件中加入本機的IP地址:
/tomcat/apache-tomcat-9.0.0.M13/webapps/manager/META-INF/context.xml
修改前的文件:
<Context antiResourceLocking="false" privileged="true" >
<Valve className="org.apache.catalina.valves.RemoteAddrValve"
allow="127\.\d+\.\d+\.\d+|::1|0:0:0:0:0:0:0:1" />
</Context>
修改后的文件:
<Context antiResourceLocking="false" privileged="true" >
<Valve className="org.apache.catalina.valves.RemoteAddrValve"
allow="127\.\d+\.\d+\.\d+|::1|0:0:0:0:0:0:0:1|127.0.0.1|192.168.58.128" />
</Context>
分享文章:Centos6.5下怎么安裝tomcat9.0版本
本文URL:http://www.rwnh.cn/article42/cjojec.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制網(wǎng)站、虛擬主機、標(biāo)簽優(yōu)化、服務(wù)器托管、面包屑導(dǎo)航、營銷型網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)