linux下安装tomcat9,linux tomcat 9 安装及配置教程

1、下载tomcat

http://tomcat.apache.org/ 可以直接从官网下,或者下载到本地上传.这里下载到本地上传

tar -xvf apache-tomcat-9.0.37.tar.gz

mv apache-tomcat-9.0.37.tar.gz /tomcat_01

2、解压 tomcat,并修改文件名

7bffe47eca14dc11aa0794dd87606334.png

3、添加tomcat的配置文件

vim /etc/proife;后面的路径问tomcat解压的路径

06f0b72ce0c4fa6b31620c3677369bf3.png

4、查看防火墙,如果防火墙是打开的,添加默认端口,并重新加载

firewall-cmd --zone=public --add-port=8080/tcp --permanent

firewall-cmd --reload

firewall-cmd --list-port

9ae6db158d95db7af19825fcbedd1d1d.png

5、进入tomcat/bin目录,启动,看到如下信息即说明tomcat启动成功

cd /mnt/tomcat_01/bin

1e284a5f1f00f5d3b675d43d6ba8c6ad.png

6、我们也可以通过网页检查一下,到此我们就把最基本的tomcat部署完成

查询tomcat命令:ps -ef|grep tomcat

验证命令:lsof -i:8080

安装lsof命令:yum install -y lsof

4325acdaecf61cbbad8c057318712730.png

linux下安装tomcat9,linux tomcat 9 安装及配置教程_第1张图片

你可能感兴趣的:(linux下安装tomcat9)