Linux\CentOS Tomcat 配置

須要注意的是:安裝 Tomcat 以前須要把 jdk 安裝好。

1、下載安裝包

- 安裝能夠在官網自行下載,下載 tar.gz 包即可。

2、解壓縮:

tar -zxvf apache-tomcat-9.0.27.tar.gz
  • 若是須要權限,執行如下命令
sudo chmod 777 apache-tomcat-9.0.27.tar.gz

3、配置環境變量

(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 鍵,在輸入命令。

4、驗證 Tomcat 服務器

(1) 進入tomcat 的目錄,找到 bin,執行裏面的 ./startup.shtomcat

啓動./startup

(2) 看到 Tomcat started,說明啓動成功。打開瀏覽器輸入 127.0.0.1:8080 or localhost:8080,看到下面界面,Tomcat 就已經安裝成功了。服務器

Tomcat驗證成功

相關文章
相關標籤/搜索