1、如何修改tomcat的默認埠為80
首先我們需要找到Tomcat目錄下面的Conf文件夾。找到server.xml文件,內將其打開。
找到
<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>這句話
只需要將這個8080修改為容80即可
修改成功後,重新啟動伺服器。看看,只需要輸入localhost即可訪問Tomcat主頁了。
2、關於Tomcat伺服器的埠
把標注的時間設置到1000
3、誰知道tomcat如何更改默認埠號?
打開tomcat所在的conf文件夾的server.xml文件;找到等代碼,將8080改為自己想改的埠,並保存退出;修改後,重啟tomcat就可以了。
4、如何修改tomcat伺服器的埠
1、成功安裝JDK和Tomcat(如果這一步有問題,可查看我的相關經驗!);
2、定位到Tomcat的安裝目錄:右鍵單擊Tomcat,選擇「屬性」,單擊「打開文件所在位置」:
3、在目錄「Tomcat7.0\conf」下找到「server.xml」文件,用VS或者其他能解譯xml文件的工具打開:
4、找到代碼port=」8080」,將8080修改為80後,單擊「保存」即可完成修改:
5、修改完成後需要重新啟動一下伺服器:先單擊stop停止伺服器,再單擊start開啟伺服器:
6、重新開啟伺服器後打開瀏覽器,在地址欄中輸入」http://localhost」並按回車鍵後顯示如下:
5、如何修改tomcat 默認埠?
首先我們需要找到Tomcat目錄下面的Conf文件夾。找到server.xml文件,將其打開。
找到
<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>這句話
只需要將這個回8080修改為80即可
修改成答功後,重新啟動伺服器。看看,只需要輸入localhost即可訪問Tomcat主頁了。
6、tomcat作為伺服器的埠號多少
如何修改Tomcat的端來口號 Tomcat的默認埠號為自8080,假如我們使用伺服器安裝Tomcat,使用網址訪問的時候,總是需要在後面加上8080埠,如何修改埠號。讓其和其他的網站一樣,直接輸入網址即可訪問呢? 方法/步驟 首先我們需要知道,http的默
7、TomCat伺服器的默認埠號是?,為了解決中文亂碼問題,需要對TomCat的配置做什麼修改?
默認埠號 是 8080
解決中文亂碼:
找到你的tomcat 目錄/conf/server.xml
這個文件 找到 <Connector port="8080" 這個地方 ,這個標簽版 加上 URIEncoding="UTF-8" 屬性
注 :URIEncoding 的值 和你項目的jsp編碼權,以及你項目中過濾器 保持一致 即可
比如你項目中 中文過濾器使用的是 GBK 或者GB1312. 那麼URIEncoding 設置成 GBK 或者GB1312
8、怎麼修改tomcat伺服器的默認的8080埠
Tomcat伺服器安裝的時候默認的埠設置是8080,通常我一看到埠是8080的網站,我就猜測伺服器估計是Tomcat,一般來說網站的埠普遍
是80,apache伺服器的默認埠就是80,而80與8080埠有一點區別就是,如果你去訪問80埠的網站,那麼可以直接輸入域名訪問,而沒必要
帶上80,因為80是http協議的默認埠;但是,如果是訪問8080埠的網站,那麼在輸入域名以後還要加上8080才行。就是因為這個繁瑣的操作,
所以我每次都會修改下埠,修改方法可以參考下面:
(1)首先找到tomcat的安裝路徑,找到路徑conf文件夾下面的server.xml文件,如下圖1所示。
圖1:server.xml所在路徑
(2)用文本編輯器打開server.xml,修改其中埠,文件中埠有很多,比如8005,8080,8009等等,別的都可以不用管,視情況修改就好,我只修改了8080埠為80,直接查找8080替換成80就OK了,修改後的文件內容如下:
<?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 e to use of particular java/javax APIs-->
<Listener className="org.apache.catalina.core." />
<!-- 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." />
<!-- 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 mper valve mps 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伺服器,配置修改成功。
9、TOMCAT伺服器的默認埠是什麼
8080
10、如何修改tomcat伺服器的埠
http://jingyan.baidu.com/article/414eccf6150dc46b431f0afa.html
tomcat的默認抄埠襲是8080,但該埠不是tomcat的唯一埠,可以通過修改tomat的配置文件進行修改,打開tomcat所在的conf文件夾的server.xml文件;
找到<Connector port="8080" ....../>等代碼,將8080改為自己想改的埠,這里我改為8088保存退出;
如下圖所示,沒有修改之前埠是8080;修改後,重啟tomcat就用8088埠了。