系统相关
首页 > 系统相关> > linux tomcat安装

linux tomcat安装

作者:互联网

1.下载tomcat wget https://dlcdn.apache.org/tomcat/tomcat-8/v8.5.73/bin/apache-tomcat-8.5.73.tar.gz

2.解压文件 tar zxf apache-tomcat-8.5.73.tar.gz -C /usr/local/

3.创建硬链接 ln -s /usr/local/apache-tomcat-8.5.73 /usr/local/tomcat

4.进入bin目录启动tomcat cd /usr/local/tomcat/bin/

./startup.sh

5.查看端口 lsof -i : 8080

6.查看进程 ps -ef|grep tomcat

 

标签:tar,tomcat,安装,73,usr,linux,apache,local
来源: https://blog.csdn.net/weixin_64552319/article/details/121589881