systemdを使用してntpdを起動するとき、ntpd pidのマウントネームスペースがpid 1と異なるのはなぜですか?
systemdを使用してntpdを起動するとき
マウントネームスペースだけがpid 1とは異なります。
ntpd mnt:[4026532696] が表示されますが、pid 1 は mnt:[4026531840] です。#ll /proc/`pidof ntpd`/ns
total 0
lrwxrwxrwx 1 root root 0 Jun 7 17:58 ipc -> ipc:[4026531839]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 mnt -> mnt:[4026532696]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 net -> net:[4026531968]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 pid -> pid:[4026531836]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 user -> user:[4026531837]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 uts -> uts:[4026531838]
#ll /proc/1/ns
total 0
lrwxrwxrwx 1 root root 0 Jun 7 17:58 ipc -> ipc:[4026531839]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 mnt -> mnt:[4026531840]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 net -> net:[4026531968]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 pid -> pid:[4026531836]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 user -> user:[4026531837]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 uts -> uts:[4026531838]
systemdを使用せずにntpdを起動する場合
systemdを使用せずにntpdを起動すると、ntpd pidのマウントネームスペースはpid 1のマウントネームスペースと同じです。
#systemctl stop ntpd
#/usr/sbin/ntpd -u ntp:ntp -g
#ll /proc/`pidof ntpd`/ns
total 0
lrwxrwxrwx 1 root root 0 Jun 20 19:46 ipc -> ipc:[4026531839]
lrwxrwxrwx 1 root root 0 Jun 20 19:46 mnt -> mnt:[4026531840]
lrwxrwxrwx 1 root root 0 Jun 20 19:46 net -> net:[4026531968]
lrwxrwxrwx 1 root root 0 Jun 20 19:46 pid -> pid:[4026531836]
lrwxrwxrwx 1 root root 0 Jun 20 19:46 user -> user:[4026531837]
lrwxrwxrwx 1 root root 0 Jun 20 19:46 uts -> uts:[4026531838]
#ll /proc/1/ns
total 0
lrwxrwxrwx 1 root root 0 Jun 7 17:58 ipc -> ipc:[4026531839]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 mnt -> mnt:[4026531840]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 net -> net:[4026531968]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 pid -> pid:[4026531836]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 user -> user:[4026531837]
lrwxrwxrwx 1 root root 0 Jun 7 17:58 uts -> uts:[4026531838]
systemdで始まる他のデーモンは大丈夫です。
sshd pidは1252
#ll /proc/1252/ns/
total 0
lrwxrwxrwx 1 root root 0 Jun 20 19:52 ipc -> ipc:[4026531839]
lrwxrwxrwx 1 root root 0 Jun 20 19:52 mnt -> mnt:[4026531840]
lrwxrwxrwx 1 root root 0 Jun 20 19:52 net -> net:[4026531968]
lrwxrwxrwx 1 root root 0 Jun 20 19:52 pid -> pid:[4026531836]
lrwxrwxrwx 1 root root 0 Jun 20 19:52 user -> user:[4026531837]
lrwxrwxrwx 1 root root 0 Jun 20 19:52 uts -> uts:[4026531838]