查看端口状态:lsof 和 netstat 的区别

查看端口状态:lsof 和 netstat 的区别

  • 命令
  • 非 Root 账号
  • Root 账号

命令

  • 查看 8865 端口状态
    • netstat -tunp|grep 8865
    • lsof -i:8865

非 Root 账号

  • 查看端口状态:lsof 和 netstat 的区别_第1张图片
    • netstat 命令可以查看部分的信息,但是仍然存在限制:
      • Not all processes could be identified, non-owned process info
        will not be shown, you would have to be root to see it all.
      • 即:不能识别所以的进程,而且不是自己拥有的进程信息不会展示,需要 root 账号才能显示所有信息
    • lsof 命令完成没有输出

Root 账号

查看端口状态:lsof 和 netstat 的区别_第2张图片

  • 虽然两个命令输出内容的偏重不同,但是均能显示全部信息

你可能感兴趣的:(linux,lsof,netstat,端口)