分类: LINUX
2014-02-18 16:38:55
CentOS/Ubuntu 默认会开启 avahi-daemon,这玩意在服务器上显然是没用的,会占用大概 250KB 的内存,最重要的是会开 5353 和 32768 两个端口。
在 Ubuntu 下禁用:
# vim /etc/default/avahi-daemon
AVAHI_DAEMON_DETECT_LOCAL=0
# sed -i s@start on (filesystem and started dbus)@start on (never and filesystem and started dbus)@ /etc/init/avahi-daemon.conf
# vim /etc/avahi/avahi-daemon.conf
use-ipv4=no
CentOS 下:
# chkconfig avahi-dnsconfd off
# chkconfig avahi-daemon off
以上都不如直接卸了爽:
# /etc/init.d/avahi-daemon stop
# update-rc.d -f avahi-daemon remove
# apt-get remove avahi-daemon