Centos安裝tomcat9及配置

boundlessSky發表於2018-11-09

1.切換到指定資料夾下,下載tomcat

mkdir /app
cd /app
wget http://mirrors.hust.edu.cn/apache/tomcat/tomcat-9/v9.0.13/bin/apache-tomcat-9.0.13.tar.gz

2.解壓檔案

tar -zxvf apache-tomcat-9.0.13.tar.gz

3.刪除壓縮檔案

rm -rf apache-tomcat-9.0.13.tar.gz

4.配置tomcat環境變數

vi /etc/profile
# 在最下方新增下列程式碼 CATALINA_HOME為你安裝tomcat的路徑
export CATALINA_HOME=/app/apache-tomcat-9.0.13
# 儲存退出,通過vim的 :wq 命令進行儲存退出
source /etc/profile # 使配置生效

5.配置UTF-8字符集

#進入tomcat安裝的conf資料夾,編輯server.xml
#找到配置8080預設埠位置,在xml節點末尾處新增URIEncoding="UTF-8" ,wq!儲存退出
 <Connector port="8080" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" URIEncoding="UTF-8" />

6.Tomcat驗證

cd /app/apache-tomcat-9.0.13/bin
./startup.sh
#啟動成功

相關文章