背景
此文記錄了 Tomcat 的基本使用方法,主要為了強化記憶。
安裝步驟
第一步:下載和安裝 Java
下載地址:http://www.oracle.com/technetwork/java/javase/downloads/index.html。
安裝並設定JAVA_HOME環境變數:
第二步:下載和解壓 Tomcat
下載地址:http://tomcat.apache.org/。
第三步:修改埠號
.NET 我使用的是 80xx,Php 我使用的是 81xx,Java 我使用的是 82xx。
修改D:\apache-tomcat-8.0.0-RC3\conf\server.xml:
1 <Service name="Catalina"> 2 3 <!--The connectors can use a shared executor, you can define one or more named thread pools--> 4 <!-- 5 <Executor name="tomcatThreadPool" namePrefix="catalina-exec-" 6 maxThreads="150" minSpareThreads="4"/> 7 --> 8 9 10 <!-- A "Connector" represents an endpoint by which requests are received 11 and responses are returned. Documentation at : 12 Java HTTP Connector: /docs/config/http.html (blocking & non-blocking) 13 Java AJP Connector: /docs/config/ajp.html 14 APR (HTTP/AJP) Connector: /docs/apr.html 15 Define a non-SSL HTTP/1.1 Connector on port 8080 16 --> 17 <Connector port="8200" protocol="HTTP/1.1" 18 connectionTimeout="20000" 19 redirectPort="8443" />
第四步:測試 Tomcat
執行:D:\apache-tomcat-8.0.0-RC3\bin\startup.bat,如果視窗沒有立即關閉,就代表成功了。
第五步:釋出自己的網站
最簡單的釋出方式莫過於將網站直接拷貝到:D:\apache-tomcat-8.0.0-RC3\webapps,這裡介紹另外一種方式。
在D:\apache-tomcat-8.0.0-RC3\conf\Catalina\localhost下面建立一個naming.xml檔案,內容如下:
1 <Context docBase="E:\Workspaces\Naming\1\WebRoot" debug="0" privileged="true"> 2 </Context>
效果:
第六步:管理 Web App
當點選 Manager App 的時候,會要求輸入使用者名稱和密碼,可以在 D:\apache-tomcat-8.0.0-RC3\conf\tomcat-users.xml 中增加使用者名稱,如下:
1 <?xml version='1.0' encoding='utf-8'?> 2 <tomcat-users> 3 <role rolename="manager-gui"/> 4 <user username="admin" password="123456" roles="manager-gui"/> 5 </tomcat-users>
注意:這是因為 Tomcat 支援 JAAS。
備註
Tomcat 蠻舒服的,心底裡還是喜歡 IIS。