1、根据进程名查看进程信息,以查看mysql进程名为例,查看所对应的进程id为1237
ps -ef | grep mysql
2、根据进程id查看进程占用端口,查看对应端口为3306(如果没有netstat命令,使用 yum -y install net-tools安装)
netstat -nap | grep 1237
3、根据端口查看对应进程,查看占用8080端口的进程id,为1237
netstat -tunlp | grep 3306
4、根据进程id查看进程信息,查看进程id为1237的进程信息
ps -ef | grep 1237