出自:https://www.cnblogs.com/robertoji/p/5555449.html
ps -ef | grep java 或者 ps aux | grep java
ps : process status
-ef aux : 都是展示哪些内容、或者如何展示
grep : grep (global search regular expression(RE) and print out the line,
按照正则表达式的方式全面搜索,并打印出来
注意:最后打印的一行,是该命令所属进程的信息,忽略掉就行。
下面是查看端口(3306端口)的命令:
[root@iZ2zejf9n91dvdpe5xgxbdZ bin]# netstat -tunlp|grep 3306
netstat -anp|grep 8765 // 查看端口
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 1348/mysqld
其中:1348是MySQL进程的PID。