查看进程及pid:
    ps -ef | grep name
查看进程端口:    
    netstat -nap | grep pid
查看端口进程:
    lsof -i:port
停止进程:
    kill pid

    kill -9 pid    //强制删除