在CentOS下,可以使用以下方式来杀死进程:
ps aux | grep process_name kill -9 PID
pkill process_name
killall process_name
请注意,在使用kill命令时,-9参数表示强制杀死进程,谨慎使用。