Skip to content

Instantly share code, notes, and snippets.

@laozhu
Created October 30, 2014 06:01
Show Gist options
  • Save laozhu/db8c802f95d0beb8ab1d to your computer and use it in GitHub Desktop.
Save laozhu/db8c802f95d0beb8ab1d to your computer and use it in GitHub Desktop.
列出nginx进程,包括主(master)进程和工作(worker)进程。
$ sudo lsof -nP -i | grep LISTEN
...
nginx 1330 root 6u IPv4 11055 0t0 TCP *:80 (LISTEN)
nginx 1331 www-data 6u IPv4 11055 0t0 TCP *:80 (LISTEN)
nginx 1332 www-data 6u IPv4 11055 0t0 TCP *:80 (LISTEN)
nginx 1333 www-data 6u IPv4 11055 0t0 TCP *:80 (LISTEN)
nginx 1334 www-data 6u IPv4 11055 0t0 TCP *:80 (LISTEN)
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment