第一种方式:
查看某个服务下的进程
ps -ef |grep mysql
杀死服务下的所有进程
ps -ef |grep mysql|grep -v grep |awk '{print $2}'|xargs kill -9
第二种方式:
kill -9 1049 1418