在Tomcat的conf文件夾里有個(gè)server.xml文件,修改里面的這段代碼,那個(gè)port值就是端口號(hào)!
tomcat默認(rèn)的端口是8080,還會(huì)占用8005,8009和8443端口。如果已經(jīng)啟動(dòng)了tomcat,再啟動(dòng)一個(gè)tomcat會(huì)發(fā)現(xiàn)這些端口已經(jīng)被占用了,這個(gè)時(shí)候我們就需要修改端口號(hào)。
方法
以apache-tomcat-7.0.6為例,進(jìn)入tomcat安裝目錄,編輯文件“安裝目錄'apache-tomcat-7.0.6'conf'server.xml”(可以用記事本打開)
修改tomcate的端口號(hào): 找到tomcat安裝目錄下conf目錄中的server.xml,默認(rèn)端口是8080,port值就是端口號(hào)。 默認(rèn)如下: 比如修改端口為8000: 重啟tomcat生效。
在server.xml文件中依次查找并修改端口號(hào):
修改位置: tomcat 的安裝目錄下的有個(gè)文件夾 conf 下的 server.xml 文件中找到如下內(nèi)容: 其中 port="8080" 就是指定的端口號(hào),修改到自己需要的號(hào),然后重起tomcat即可
<Server port="8005" shutdown="SHUTDOWN">
1、成功安裝JDK和Tomcat(如果這一步有問題,可查看我的相關(guān)經(jīng)驗(yàn)!); 2、定位到Tomcat的安裝目錄:右鍵單擊Tomcat,選擇“屬性”,單擊“打開文件所在位置”: 3、在目錄“Tomcat7.0conf”下找到“server.xml”文件,用VS或者其他能解譯xml文件的工具
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443"/>
修改tomcat端口號(hào)的方法: 修改Server.xml文件,把8080端口改成80就可以了。 8080是Tomcat服務(wù)器的默認(rèn)的端口號(hào)。我們可以通過修改Tomcat服務(wù)器的conf目錄下的主配置文件server.xml來更改.用記事本打開server.xml文件,找到如下部分: 以下為引用
在server.xml文件中依次查找修改
首先我們需要找到Tomcat目錄下面的Conf文件夾。找到server.xml文件,將其打開。 找到 這句話 只需要將這個(gè)8080修改為80即可 修改成功后,重新啟動(dòng)服務(wù)器??纯矗恍枰斎雔ocalhost即可訪問Tomcat主頁了。
<Server port="8005" shutdown="SHUTDOWN">
1、成功安裝JDK和Tomcat(如果這一步有問題,可查看我的相關(guān)經(jīng)驗(yàn)?。?; 2、定位到Tomcat的安裝目錄:右鍵單擊Tomcat,選擇“屬性”,單擊“打開文件所在位置”: 3、在目錄“Tomcat7.0conf”下找到“server.xml”文件,用VS或者其他能解譯xml文件的工具
修改為:
<Server port="8006" shutdown="SHUTDOWN">
首先我們需要找到Tomcat目錄下面的Conf文件夾。找到server.xml文件,將其打開。 找到 這句話 只需要將這個(gè)8080修改為80即可 修改成功后,重新啟動(dòng)服務(wù)器??纯矗恍枰斎雔ocalhost即可訪問Tomcat主頁了。
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443"/>
修改tomcat端口號(hào)的方法: 修改Server.xml文件,把8080端口改成80就可以了。 8080是Tomcat服務(wù)器的默認(rèn)的端口號(hào)。我們可以通過修改Tomcat服務(wù)器的conf目錄下的主配置文件server.xml來更改.用記事本打開server.xml文件,找到如下部分: 以下為引用
修改為:
<Connector port="8010" protocol="AJP/1.3" redirectPort="8444"/>
1、成功安裝JDK和Tomcat 2、定位到Tomcat的安裝目錄:右鍵單擊Tomcat,選擇“屬性”,單擊“打開文件所在位置”: 3、在目錄“Tomcat7.0conf”下找到“server.xml”文件,用VS或者其他能解譯xml文件的工具打開: 4、找到代碼port=”8080”,將8080修改為8
<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
Tomcat服務(wù)器安裝的時(shí)候默認(rèn)的端口設(shè)置是8080,通常我一看到端口是8080的網(wǎng)站,我就猜測服務(wù)器估計(jì)是Tomcat,一般來說網(wǎng)站的端口普遍 是80,apache服務(wù)器的默認(rèn)端口就是80,而80與8080端口有一點(diǎn)區(qū)別就是,如果你去訪問80端口的網(wǎng)站,那么可以直
修改為:
<Connector connectionTimeout="20000" port="8081" protocol="HTTP/1.1" redirectPort="8444"/>
今天遇到個(gè)情況,裝了個(gè)BO,自帶個(gè)tomcat,這時(shí)就需要修改三個(gè)地方修改Tomcat的端口號(hào):在默認(rèn)情況下,tomcat的端口是8080,如果出現(xiàn)8080端口號(hào)沖突,用如下方法可以修改Tomcat的端口號(hào):首先: 在Tomcat的根(安裝)目錄下,有一個(gè)conf文件夾,
啟動(dòng)tomcat,訪問http://localhost:8081/;能成功訪問,說明修改成功(訪問的端口跟據(jù)配置文件中設(shè)置的Connector 端口)
打開tomcat所在的conf文件夾的server.xml文件; 找到等代碼,將8080改為自己想改的端口,并保存退出; 修改后,重啟tomcat就可以了。
擴(kuò)展閱讀,以下內(nèi)容您可能還感興趣。
如何設(shè)置Tomcat的默認(rèn)端口
1、成功安裝JDK和Tomcat
2、定位到Tomcat的安裝目錄:右鍵單擊Tomcat,選擇“屬性”,單擊“打開文件所在位置”:
3、在目錄“Tomcat7.0\conf”下找到“server.xml”文件,用VS或者其他能解譯xml文件的工具打開:
4、找到代碼port=”8080”,將8080修改為80后,單擊“保存”即可完成修改:
5、修改完成后需要重新啟動(dòng)一下服務(wù)器:先單擊stop停止服務(wù)器,再單擊start開啟服務(wù)器:
6、重新開啟服務(wù)器后打開瀏覽器,在地址欄中輸入”http://localhost”并按回車鍵后顯示如下:
注意:
用記事本也能打開.xml文件,但是顯示時(shí)未能用顏色區(qū)分代碼和注釋,看起來很亂,不容易找到8080;
網(wǎng)址輸入時(shí)一般都可以省略”http://”,而且localhost也可以用“127.0.0.1”代替;
怎么修改tomcat服務(wù)器的默認(rèn)的8080端口
Tomcat服務(wù)器安裝的時(shí)候默認(rèn)的端口設(shè)置是8080,通常我一看到端口是8080的網(wǎng)站,我就猜測服務(wù)器估計(jì)是Tomcat,一般來說網(wǎng)站的端口普遍
是80,apache服務(wù)器的默認(rèn)端口就是80,而80與8080端口有一點(diǎn)區(qū)別就是,如果你去訪問80端口的網(wǎng)站,那么可以直接輸入域名訪問,而沒必要
帶上80,因?yàn)?0是http協(xié)議的默認(rèn)端口;但是,如果是訪問8080端口的網(wǎng)站,那么在輸入域名以后還要加上8080才行。就是因?yàn)檫@個(gè)繁瑣的操作,
所以我每次都會(huì)修改下端口,修改方法可以參考下面:
(1)首先找到tomcat的安裝路徑,找到路徑conf文件夾下面的server.xml文件,如下圖1所示。
圖1:server.xml所在路徑
(2)用文本編輯器打開server.xml,修改其中端口,文件中端口有很多,比如8005,8080,8009等等,別的都可以不用管,視情況修改就好,我只修改了8080端口為80,直接查找8080替換成80就OK了,修改后的文件內(nèi)容如下:
<?xml version='1.0' encoding='utf-8'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- Note: A "Server" is not itself a "Container", so you may not
define subcomponents such as "Valves" at this level.
Documentation at /docs/config/server.html
-->
<Server port="8005" shutdown="SHUTDOWN">
<!--APR library loader. Documentation at /docs/apr.html -->
<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
<!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
<Listener className="org.apache.catalina.core.JasperListener" />
<!-- Prevent memory leaks due to use of particular java/javax APIs-->
<Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
<!-- JMX Support for the Tomcat server. Documentation at /docs/non-existent.html -->
<Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />
<Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
<!-- Global JNDI resources
Documentation at /docs/jndi-resources-howto.html
-->
<GlobalNamingResources>
<!-- Editable user database that can also be used by
UserDatabaseRealm to authenticate users
-->
<Resource name="UserDatabase" auth="Container"
type="org.apache.catalina.UserDatabase"
description="User database that can be updated and saved"
factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
pathname="conf/tomcat-users.xml" />
</GlobalNamingResources>
<!-- A "Service" is a collection of one or more "Connectors" that share
a single "Container" Note: A "Service" is not itself a "Container",
so you may not define subcomponents such as "Valves" at this level.
Documentation at /docs/config/service.html
-->
<Service name="Catalina">
<!--The connectors can use a shared executor, you can define one or more named thread pools-->
<!--
<Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
maxThreads="150" minSpareThreads="4"/>
-->
<!-- A "Connector" represents an endpoint by which requests are received
and responses are returned. Documentation at :
Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
Java AJP Connector: /docs/config/ajp.html
APR (HTTP/AJP) Connector: /docs/apr.html
Define a non-SSL HTTP/1.1 Connector on port 8080
-->
<Connector port="80" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
<!-- A "Connector" using the shared thread pool-->
<!--
<Connector executor="tomcatThreadPool"
port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
-->
<!-- Define a SSL HTTP/1.1 Connector on port 8443
This connector uses the JSSE configuration, when using APR, the
connector should be using the OpenSSL style configuration
described in the APR documentation -->
<!--
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" />
-->
<!-- Define an AJP 1.3 Connector on port 8009 -->
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
<!-- An Engine represents the entry point (within Catalina) that processes
every request. The Engine implementation for Tomcat stand alone
analyzes the HTTP headers included with the request, and passes them
on to the appropriate Host (virtual host).
Documentation at /docs/config/engine.html -->
<!-- You should set jvmRoute to support load-balancing via AJP ie :
<Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">
-->
<Engine name="Catalina" defaultHost="localhost">
<!--For clustering, please take a look at documentation at:
/docs/cluster-howto.html (simple how to)
/docs/config/cluster.html (reference documentation) -->
<!--
<Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
-->
<!-- The request dumper valve dumps useful debugging information about
the request and response data received and sent by Tomcat.
Documentation at: /docs/config/valve.html -->
<!--
<Valve className="org.apache.catalina.valves.RequestDumperValve"/>
-->
<!-- This Realm uses the UserDatabase configured in the global JNDI
resources under the key "UserDatabase". Any edits
that are performed against this UserDatabase are immediately
available for use by the Realm. -->
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
resourceName="UserDatabase"/>
<!-- Define the default virtual host
Note: XML Schema validation will not work with Xerces 2.2.
-->
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<!-- SingleSignOn valve, share authentication between web applications
Documentation at: /docs/config/valve.html -->
<!--
<Valve className="org.apache.catalina.authenticator.SingleSignOn" />
-->
<!-- Access log processes all example.
Documentation at: /docs/config/valve.html -->
<!--
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log." suffix=".txt" pattern="common" resolveHosts="false"/>
-->
</Host>
</Engine>
</Service>
</Server>
(3)修改server.xml文件以后,重啟tomcat服務(wù)器,配置修改成功。
當(dāng)裝了兩個(gè)tomcat后,如何修改tomcat端口(...
今天遇到個(gè)情況,裝了個(gè)BO,自帶個(gè)tomcat,這時(shí)就需要修改三個(gè)地方修改Tomcat的端口號(hào):在默認(rèn)情況下,tomcat的端口是8080,如果出現(xiàn)8080端口號(hào)沖突,用如下方法可以修改Tomcat的端口號(hào):首先: 在Tomcat的根(安裝)目錄下,有一個(gè)conf文件夾,雙擊進(jìn)入conf文件夾,在里面找到Server.xml文件,打開該文件。其次:在文件中找到如下文本:<Connector port=8080 protocol=HTTP/1.1maxThreads=150 connectionTimeout=20000redirectPort=8443 /也有可能是這樣的:<Connector port=8080 maxThreads=150 minSpareThreads=25 maxSpareThreads=75 enableLookups=false redirectPort=8443 acceptCount=100 debug=0 connectionTimeout=20000disableUploadTimeout=true /等等;最后:將port=8080改為其它的就可以了。如port=8081等。保存server.xml文件,重新啟動(dòng)Tomcat服務(wù)器,Tomcat就可以使用8081端口了。注意,有的時(shí)候要使用兩個(gè)tomcat源碼天空,那么就需要修改其中的一個(gè)的端口號(hào)才能使得兩個(gè)同時(shí)工作。修改了上面的以后,還要修改兩處:(1)將 <Connector port=8009 enableLookups=false redirectPort=8443 debug=0protocol=AJP/1.3 /的8009改為其它的端口。(2) 繼續(xù)將<Server port=8005 shutdown=SHUTDOWN debug=0的8005改為其它的端口。經(jīng)過以上3個(gè)修改,應(yīng)該就可以了。
如何修改tomcat服務(wù)器的端口
打開tomcat所在的conf文件夾的server.xml文件;
找到<Connector port="8080" ....../>等代碼,將8080改為自己想改的端口,并保存退出;
修改后,重啟tomcat就可以了。
如何修改tomcat7的端口和用戶名密碼
1.在Tomcat的conf文件夾里有個(gè)server.xml文件,修改里面的<Connector
port="80" maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" redirectPort="8443" acceptCount="100"
connectionTimeout="20000" disableUploadTimeout="true" />
那個(gè)port值就是端口號(hào)
2.在tomat目錄下的conf/server.xml中找到GlobalNamingResources結(jié)點(diǎn),內(nèi)容如下:
<GlobalNamingResources>
<!-- Editable user database that can also be used by
UserDatabaseRealm to authenticate users
-->
<Resource auth="Container" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" name="UserDatabase" pathname="conf/tomcat-users.xml" type="org.apache.catalina.UserDatabase"/>
</GlobalNamingResources>
這個(gè)就是配置用戶名和密碼的資源結(jié)點(diǎn),里面的pathname指定的文件就是存儲(chǔ)用戶名和密碼的地方。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com