ip netns add test 후 네임스페이스를 삭제할 수 없는 문제를 디버깅하는 방법 [닫기]

ip netns add test 후 네임스페이스를 삭제할 수 없는 문제를 디버깅하는 방법 [닫기]
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=34,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=9430)
mqueue on /dev/mqueue type mqueue (rw,relatime)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
tmpfs on /run/user/0 type tmpfs (rw,nosuid,nodev,relatime,size=401072k,mode=700)
tmpfs on /run/netns type tmpfs (rw,nosuid,noexec,relatime,size=401076k,mode=755)
nsfs on /run/netns/test type nsfs (rw)


root@localhost:~# ip netns delete test
Cannot remove namespace file "/var/run/netns/test": Device or resource busy
root@localhost:~# umount --force /run/netns/test 
umount: /run/netns/test: not mounted


netns       20            root  cwd       DIR               8,17     4096          2 /
netns       20            root  rtd       DIR               8,17     4096          2 /
netns       20            root  txt   unknown                                        /proc/20/exe


root        20  0.0  0.0      0     0 ?        S<   06:11   0:00 [netns]
root        21  0.0  0.0      0     0 ?        S    06:11   0:00 [khungtaskd]

이 문제를 해결하려면 어떻게 해야 합니까? netns이 마운트 지점의 유일한 사용자인 것 같 나요 ? 스레드를 종료해야 하나요? 아니면 종료할 수 있나요?

답변1

네임스페이스를 사용하는 프로세스를 확인하세요.fuser

fuser /var/run/netns/test

리소스를 사용하는 프로세스 ID를 나타내는 숫자 목록이 출력됩니다. 그런 다음 다음을 사용하여 각 프로세스 ID를 확인할 수 있습니다 ps.

ps -p 123

관련 정보