溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Linux CentOS下怎么安裝Tomcat9及web項目

發(fā)布時間:2022-04-12 16:21:19 來源:億速云 閱讀:168 作者:iii 欄目:編程語言

這篇“Linux CentOS下怎么安裝Tomcat9及web項目”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Linux CentOS下怎么安裝Tomcat9及web項目”文章吧。

環(huán)境:阿里云ecs 云服務(wù)器linux centos

使用xshell客戶端連接服務(wù)器,進行操作實踐。

1、下載tomcat

部署到 /usr/local/tomcat,創(chuàng)建好文件夾、目錄。

使用wget指令:

wget
結(jié)果如下,成功下載了apache-tomcat-9.0.10.tar.gz

Linux CentOS下怎么安裝Tomcat9及web項目

2、解壓縮

tar -zxvf apache-tomcat-9.0.10.tar.gz

自動解壓

Linux CentOS下怎么安裝Tomcat9及web項目

3、啟動tomcat

進入tomcat下的bin目錄

[root@izuf6famz0x92jd98na1kiz bin]# ./catalina.sh start

Linux CentOS下怎么安裝Tomcat9及web項目

發(fā)現(xiàn) tomcat started

4、通過瀏覽器訪問

Linux CentOS下怎么安裝Tomcat9及web項目

經(jīng)搜索查詢,可能是 阿里云服務(wù)器,對安全性的要求,使得,無法直接訪問:

解決方式:

(1)進入阿里云主機控制臺,安全組,如下圖所示,點擊配置規(guī)則

Linux CentOS下怎么安裝Tomcat9及web項目

Linux CentOS下怎么安裝Tomcat9及web項目

(2)配置規(guī)則,添加規(guī)則允許任何ip訪問8080

 Linux CentOS下怎么安裝Tomcat9及web項目

Linux CentOS下怎么安裝Tomcat9及web項目

(3)再次訪問,就成功了

Linux CentOS下怎么安裝Tomcat9及web項目

 成功完成 tomcat 服務(wù)器的下載和安裝!

  5、tomcat配置服務(wù)和自啟動(可選,可以不設(shè)置)

把tomcat加入服務(wù)當中,到tomcat的bin目錄中把catalina.sh復(fù)制到/etc/init.d里并命名為tomcat

shell~#cp /usr/local/apache-tomcat/bin/catalina.sh /etc/init.d/tomcat

編輯此文件

shell~#vi tomcat

在#!/bin/sh下加入

### begin init info
# provides: tomcat
# required-start: $remote_fs $network
# required-stop: $remote_fs $network
# default-start: 2 3 4 5
# default-stop: 0 1 6
# short-description: the tomcat java application server
### end init info

在分割線下加入環(huán)境變量

java_home=/usr/java/jdk1.7.0_07
export java_home
path=$java_home/bin:$path
export path
catalina_home=/usr/local/apache-tomcat

給這個腳本與權(quán)限

shell~#chmod 755 tomcat

添加tomcat服務(wù)這里用chkconfig

shell~#chkconfig --add tomcat

如果這里出現(xiàn)提示

insserv: warning: script 'tomcat' missing lsb tags and overrides
insserv: there is a loop between service nginx and tomcat if stopped
insserv: loop involving service tomcat at depth 2
insserv: loop involving service nginx at depth 1
insserv: stopping tomcat depends on nginx and therefore on system facility `$all' which can not be true!
insserv: exiting now without changing boot order!

則需要安裝chkconfig安裝方法

shell~#apt-get install chkconfig

就可以如出現(xiàn)以下表示成功

tomcat                    0:off  1:off  2:on   3:on   4:on   5:on   6:off

也可以在輸入以下命令查看一下

shell~#chkconfig --list tomcat

tomcat                    0:off  1:off  2:on   3:on   4:on   5:on   6:off

如果345 為關(guān)閉狀態(tài)。執(zhí)行如下命令設(shè)置tomcat為開機自啟動。

 shell~# chkconfig tomcat on

啟動一下看看

shell~# service tomcat start
using catalina_base: /usr/local/apache-tomcat
using catalina_home: /usr/local/apache-tomcat
using catalina_tmpdir: /usr/local/apache-tomcat/temp
using jre_home: /usr/java/jdk1.7.0_07
using classpath: /usr/local/apache-tomcat/bin/bootstrap.jar:/usr/local/apache-tomcat/bin/tomcat-juli.jar

啟動,停止,重啟

shell~# service tomcat start
shell~# ervice tomcat stop
shell~# service tomcat restart

以上就是關(guān)于“Linux CentOS下怎么安裝Tomcat9及web項目”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI