須要注意的是:安裝 Tomcat 以前須要把 jdk 安裝好。
- 安裝能夠在官網自行下載,下載 tar.gz 包即可。
tar -zxvf apache-tomcat-9.0.27.tar.gz
sudo chmod 777 apache-tomcat-9.0.27.tar.gz
(1) 打開環境變量配置文件html
sudo vim /etc/profile
(2) 在最下方添加以下命令:apache
export CATALINA_HOME=/usr/local/tomcat9/apache-tomcat-9.0.27
(3) 保存退出,經過vim的 ":wq"命令保存退出。若是還處於編輯狀態,須要按下 Esc 鍵,在輸入命令。
(4) 使命令生效:vim
source /etc/profile
(5) 配置 UTF-8 字符集(防止亂碼問題)瀏覽器
A. 進入 tomcat 安裝 conf 文件夾,編輯server.xml 文件
cd /usr/local/tomcat9/apache-tomcat-9.0.27/conf
B. 編輯 server.xml 文件
vim server.xml
C. 找到配置 8080 默認端口的位置,在 xml 節點末尾添加 URIEncoding="UTF-8",以下:
Java AJP Connector: /docs/config/ajp.html APR (HTTP/AJP) Connector: /docs/apr.html Define a non-SSL/TLS HTTP/1.1 Connector on port 8080 --> <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" URIEncodeing="UTF-8"/> <!-- A "Connector" using the shared thread pool--> <!-- <Connector executor="tomcatThreadPool" port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" /> --> <!-- Define an SSL/TLS HTTP/1.1 Connector on port 8443 This connector uses the NIO implementation. The default SSLImplementation will depend on the presence of the APR/native library and the useOpenSSL attribute of the AprLifecycleListener. Either JSSE or OpenSSL style configuration may be used regardless of the SSLImplementation selected. JSSE style configuration is used below. -->
D. 保存退出,經過vim的 ":wq"命令保存退出。若是還處於編輯狀態,須要按下 Esc 鍵,在輸入命令。
(1) 進入tomcat 的目錄,找到 bin,執行裏面的 ./startup.shtomcat
(2) 看到 Tomcat started,說明啓動成功。打開瀏覽器輸入 127.0.0.1:8080 or localhost:8080,看到下面界面,Tomcat 就已經安裝成功了。服務器