2021年7月19日 星期一

[研究]Apache Tomcat 9.0.50安裝(tar.gz) (CentOS 8.4 x64)

[研究]Apache Tomcat 9.0.50安裝(tar.gz) (CentOS 8.4 x64)

2021-07-19

到官方網站確認目前版本和下載網址

https://downloads.apache.org/tomcat/tomcat-9/v9.0.50/bin/apache-tomcat-9.0.50.tar.gz

安裝說明

https://tomcat.apache.org/tomcat-9.0-doc/setup.html#Unix_daemon

開始安裝

yum -y install httpd  tomcat-native  java-1.8.0-openjdk

cd  /usr/share
wget https://downloads.apache.org/tomcat/tomcat-9/v9.0.50/bin/apache-tomcat-9.0.50.tar.gz
tar zxvf apache-tomcat-9.0.50.tar.gz 
sudo ln -s /usr/share/apache-tomcat-9.0.50/ /usr/share/tomcat

sudo groupadd --system tomcat
sudo useradd -d /usr/share/tomcat -r -s /bin/false -g tomcat tomcat
sudo chown -R tomcat:tomcat /usr/share/tomcat

[root@localhost bin]# ./startup.sh
Using CATALINA_BASE:   /usr/share/tomcat
Using CATALINA_HOME:   /usr/share/tomcat
Using CATALINA_TMPDIR: /usr/share/tomcat/temp
Using JRE_HOME:        /usr
Using CLASSPATH:       /usr/share/tomcat/bin/bootstrap.jar:/usr/share/tomcat/bin/tomcat-juli.jar
Using CATALINA_OPTS:   
Tomcat started.
[root@localhost bin]# 

連上 http://localhost:8080/   ,不是 https

(完)

沒有留言:

張貼留言