linux下载tomcat的作业

1.创建一个Tomcat文件夹

命令:mkdir tomcat

进去之后下载 Tomcat

2.下载并安装 Tomcat

命令:
wget https://downloads.apache.org/tomcat/tomcat-9/v9.0.36/bin/apache-tomcat-9.0.36.zip

3.添加执行权限
命令:chmod +x apache-tomcat-9.0.36.zip

4.下载unzip
命令:yum install unzip

5.解压

命令:unzip apache-tomcat-9.0.36.zip

6.继续修改解压好的文件
命令:chmod a+x -R * unzip apache-tomcat-9.0.36

7.进入unzip apache-tomcat-9.0.36的bin目录然后ls展示

8.启动tomcat
命令:sh startup.sh

猜你喜欢

转载自blog.csdn.net/weixin_44887440/article/details/106797994