//查询运行中所有的进程
netstat -lntup
//通过端口号查找运行中的进程
netstat -lntup|grep pid(端口号ID:如tomcat:8080)
//通过进程id查找运行进程所在的位置
ps -ef|grep pid(进程ID:通过上述命令查询运行进程获取进程ID,指向地址为tomcat目录)
//查询运行中所有的进程
netstat -lntup
//通过端口号查找运行中的进程
netstat -lntup|grep pid(端口号ID:如tomcat:8080)
//通过进程id查找运行进程所在的位置
ps -ef|grep pid(进程ID:通过上述命令查询运行进程获取进程ID,指向地址为tomcat目录)