WeAir

Ubuntu禁用systemd-resolved服务

Ubuntu会默认开启systemd-resolved服务占用53端口,某些情况下可能会导致端口冲突,所以需要关闭该服务。

修改配置文件

1
sed -i 's/#DNSStubListener=yes/DNSStubListener=no/' /etc/systemd/resolved.conf

创建软链接

1
ln -sf /run/systemd/resolve/resolv.conf /etc/resolv.conf

重启服务

1
systemctl restart systemd-resolved.service

查看53端口是否使用

1
lsof -i :53