标签:dir stat 简单 解压 window tomcat日志 tail 执行 code
cd /usr/xxx
ll or ls
mkdir xxx
touch xxx.txt or xxx.config
chmod 777 xxx.config (可读可写可执行)
vi or vim xxx.config
i dd Esc : wq or q!
less catalina.out
G ->? or / key ->N or n 查找下一个
tail -f catalina.out
tail -f catalina.out -n 1000
ps -ef | grep tomcat
netstat -tunlp | grep 8080 or PID (linux)
netstat -ano | findstr "8080" (windows)
telnet xxxx.xxx.xx.x
telnet xxx.xxx.xx.x 8080 (A 机器 查看 B机器/B机器端口是否连通 )
解压
jar -xvf xxx.war
jar xf xxx.jar
标签:dir stat 简单 解压 window tomcat日志 tail 执行 code
原文地址:https://www.cnblogs.com/du1991/p/11312621.html