Утилиты для работы с пространствами имен улучшились с тех пор, как этот вопрос был задан в 2013 году.
lsns
из пакета util-linux можно перечислить все различные типы пространств имен в различных полезных форматах.
# lsns --help
Usage:
lsns [options] [<namespace>]
List system namespaces.
Options:
-J, --json use JSON output format
-l, --list use list format output
-n, --noheadings don't print headings
-o, --output <list> define which output columns to use
-p, --task <pid> print process namespaces
-r, --raw use the raw output format
-u, --notruncate don't truncate text in columns
-t, --type <name> namespace type (mnt, net, ipc, user, pid, uts, cgroup)
-h, --help display this help and exit
-V, --version output version information and exit
Available columns (for --output):
NS namespace identifier (inode number)
TYPE kind of namespace
PATH path to the namespace
NPROCS number of processes in the namespace
PID lowest PID in the namespace
PPID PPID of the PID
COMMAND command line of the PID
UID UID of the PID
USER username of the PID
For more details see lsns(8).
lsns
перечисляет только самый низкий PID для каждого процесса - но вы можете использовать этот PID, pgrep
если хотите перечислить все процессы, принадлежащие пространству имен.
Например, если я запускаю gitlab в Docker и хочу найти все процессы, запущенные в этом пространстве имен, я могу:
# lsns -t pid -o ns,pid,command | grep gitlab
4026532661 459 /opt/gitlab/embedded/bin/redis-server 127.0.0.1:0
и затем используйте этот pid (459) с pgrep
:
# pgrep --ns 459 -a
459 /opt/gitlab/embedded/bin/redis-server 127.0.0.1:0
623 postgres: gitlab gitlabhq_production [local] idle
[...around 50 lines deleted...]
30172 nginx: worker process
Я также мог бы использовать идентификатор пространства имен (4026532661) с ps
, например:
ps -o pidns,pid,cmd | awk '$1==4026532661'
[...output deleted...]