Como listar namespaces no Linux?

16

Existe algum método no Linux para listar todos os namespaces no host em execução? Eu preciso verificar namespaces para processos específicos (por exemplo, processos em execução no contêiner LXC e todos os outros processos no host) e, em seguida, descobrir cgroups deles.

    
por zerospiel 16.12.2013 / 14:38

2 respostas

6

Os utilitários para trabalhar com namespaces melhoraram desde que essa pergunta foi feita em 2013.

lsns do pacote util-linux pode listar todos os diferentes tipos de namespaces, em vários formatos úteis.

# 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 apenas lista o PID mais baixo para cada processo - mas você pode usar esse PID com pgrep se quiser listar todos os processos pertencentes a um namespace.

por exemplo. se eu estiver executando o gitlab no docker e quiser encontrar todos os processos em execução nesse namespace, posso:

# lsns  -t pid -o ns,pid,command  | grep gitlab
  4026532661   459 /opt/gitlab/embedded/bin/redis-server 127.0.0.1:0

e, em seguida, use esse pid (459) com 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

Eu também poderia usar o ID do namespace (4026532661) com ps , por exemplo:

ps -o pidns,pid,cmd | awk '$1==4026532661'
[...output deleted...]
    
por 28.07.2017 / 17:17
3

Da página de manual do ip para o espaço de nomes de rede

ip netns - gerenciamento de namespace de rede de processo        Um namespace de rede é logicamente outra cópia da pilha de rede,        com suas próprias rotas, regras de firewall e dispositivos de rede.

   By  convention  a   named   network   namespace   is   an   object   at
   /var/run/netns/NAME  that can be opened.  The file descriptor resulting
   from opening /var/run/netns/NAME refers to the specified network names-
   pace.   Holding  that  file descriptor open keeps the network namespace
   alive.  The file descriptor can be used with the setns(2)  system  call
   to change the network namespace associated with a task.

   The  convention for network namespace aware applications is to look for
   global network configuration files first in  /etc/netns/NAME/  then  in
   /etc/.    For   example,   if   you   want   a   different  version  of
   /etc/resolv.conf for a network namespace used to isolate your  vpn  you
   would name it /etc/netns/myvpn/resolv.conf.

Para espaços de nome de outros tipos, talvez haja outras maneiras

    
por 16.12.2013 / 15:03