Linux查看并杀死被占用的端口
sudo apt-get install lsof //安装lsofsudo lsof -i:端口号 //查找对应的进程号sudo kill -9 进程号 //杀死对应的进程