ฉันดูเหมือนว่าจะมีสองอินสแตนซ์ที่dnsmasq
ทำงานบน Ubuntu 12.04 ของฉัน ดูเหมือนว่าต่อไปนี้จะทำงานเพื่อเริ่มต้นใหม่ทั้งสอง:
$ sudo service network-manager restart
$ sudo stop lxc-net; sudo start lxc-net
ตัวอย่างผลลัพธ์:
$ for p in $(pgrep dnsmasq); do pstree -spu $p; done
init(1)───NetworkManager(19343)───dnsmasq(19417,nobody)
init(1)───dnsmasq(19623,lxc-dnsmasq)
$ sudo service network-manager restart
network-manager stop/waiting
network-manager start/running, process 20048
$ for p in $(pgrep dnsmasq); do pstree -spu $p; done
init(1)───dnsmasq(19623,lxc-dnsmasq)
init(1)───NetworkManager(20048)───dnsmasq(20066,nobody)
$ sudo stop lxc-net; sudo start lxc-net
lxc-net stop/waiting
lxc-net start/running
$ for p in $(pgrep dnsmasq); do pstree -spu $p; done
init(1)───NetworkManager(20048)───dnsmasq(20066,nobody)
init(1)───dnsmasq(20262,lxc-dnsmasq)
การlxc-net
รีสตาร์ทได้กล่าวถึงที่นี่:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1043588