首页 > 代码库 > 常用Linux命令

常用Linux命令

1、看是否已经有某个进程在运行了,如tomcat

ps -ef |grep tomcat

 

2、查看某个端口是否被占用,如8080

netstat -nap | grep 8080