Linux 常用命令

  • 查看服务器当前开放端口
    netstat -aptn
    
  • 查看服务器当前监听端口
    netstat -tpln
    
  • 查看端口杀死占用进程
    lsof -i :3000
    
    kill -9 PID
    

你可能感兴趣的:(后端)