首先你你要有一个Linux系统
然后
1.检查jdk 看是linux是否安装jdk环境
可以参考 https://blog.csdn.net/lyp1245387976/article/details/89140558
2.tomcat 下载tomcat使用ssh/或其他的工具将tomcat复制到linux中
启动tomcat 使其能够正常启动
3.关闭linux防火墙
永久性生效 开启:chkconfig iptables on 关闭:chkconfig iptables off
重启后失效 开启:service iptables start 关闭:service iptables stop
4.将项目复制到tomcat webapps中 运行tomcat
5.结束
用到的命令有 :
ps -aux | grep tomcat 或 ps -aux | grep java 查看tomcat进程 有时shutdown.sh会关闭不了
使用 kill -9 [进程号] 来关闭
rm -rf [文件夹] 删除文件