- 已关闭。**此问题为not about programming or software development。当前不接受答案。
此问题似乎与a specific programming problem, a software algorithm, or software tools primarily used by programmers无关。如果您认为此问题与another Stack Exchange site的主题有关,您可以留下评论,说明在何处可以回答此问题。
昨天关门了。
Improve this question
这是一个非常烦人的问题,我有与rndc reload
我收到以下错误:
rndc: connect failed: 127.0.0.1#953: connection refused
但是下面的工作很好,
[root@cbgfx ~]# service named restart
Stopping named: . [ OK ]
Starting named: [ OK ]
[root@cbgfx ~]# tail -f /var/log/messages
Aug 7 12:51:09 cbgfx named[31990]: zone 120.88.167.in-addr.arpa/IN: loaded serial 14
Aug 7 12:51:09 cbgfx named[31990]: zone 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa/IN: loaded serial 0
Aug 7 12:51:09 cbgfx named[31990]: zone domain.com/IN: domain.com/MX 'mail.servergreek.com' has no address records (A or AAAA)
Aug 7 12:51:09 cbgfx named[31990]: zone domain.com/IN: loaded serial 14
Aug 7 12:51:09 cbgfx named[31990]: zone localhost.localdomain/IN: loaded serial 0
Aug 7 12:51:09 cbgfx named[31990]: zone localhost/IN: loaded serial 0
Aug 7 12:51:09 cbgfx named[31990]: managed-keys-zone ./IN: loaded serial 4
Aug 7 12:51:09 cbgfx named[31990]: zone domain.com/IN: sending notifies (serial 14)
Aug 7 12:51:09 cbgfx named[31990]: zone 120.88.167.in-addr.arpa/IN: sending notifies (serial 14)
Aug 7 12:51:09 cbgfx named[31990]: running
vps有ipv6
ip地址,这里有什么我遗漏的吗?
先谢谢你们了
5条答案
按热度按时间vmdwslir1#
我自己修复了它,这是一个权限和所有权问题。要修复它,您需要执行那些ssh命令
修复rndc连接被拒绝错误
chown root:named /etc/rndc.key
chmod 640 /etc/rndc.key
35g0bw712#
清除目录**/var/cache/bind/中的文件,然后在终端bash中重新启动/etc/bind/bind 9**
wyyhbhjk3#
问题可能不仅仅出在rndc.key中。
最简单的检测方法是运行:
检查是否有错误,如果有错误,运行:
检查任何权限被拒绝的错误。日志文件中也可能存在该错误。
fykwrbwg4#
在我的情况下,作为bsentosa评论我需要启动进程命名,你可以启用命名启动在系统内一起
wj8zmpe15#
我在Mac OS X(Ventura)上,通过
Brew
安装了Bind9
。我遇到了同样的问题。我必须运行named
和sudo
才能使这个错误消失:是所有权问题。此外,您应该注意
named
日志,有时您只是在您的*.zone file
错误。我希望它能帮助Mac用户登陆这里。