DNS服务安装错误 bind-chroot-9.3.3-7.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186

今天给我的linux 5 装DNS服务的时候发现了如下错误!
[root@localhost Server]# rpm -ivh  bind-chroot-9.3.3-7.el5.i386.rpm
warning: bind-chroot-9.3.3-7.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
error: Failed dependencies:
        bind = 30:9.3.3-7.el5 is needed by bind-chroot-9.3.3-7.el5.i386

主要是因为缺少了相应的包


在不是完全安装系统软件包的情况,必需要安装的软件包如下:
1:util-linux-2.13-0.44.el5.i386.rpm
[root@localhost Server]# rpm -ivh util-linux-2.13-0.44.el5.i386.rpm
warning: util-linux-2.13-0.44.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
Preparing...                ########################################### [100%]
        package util-linux-2.13-0.44.el5 is already installed

 

2:cachefilesd-0.7-6.el5.i386.rpm

[root@localhost Server]# rpm -ivh cachefilesd-0.7-6.el5.i386.rpm
warning: cachefilesd-0.7-6.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
Preparing...                ########################################### [100%]
   1:cachefilesd            ########################################### [100%]

 

3:bind-9.3.3-7.el5.i386.rpm

[root@localhost Server]# rpm -ivh bind-9.3.3-7.el5.i386.rpm
warning: bind-9.3.3-7.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
Preparing...                ########################################### [100%]
   1:bind                   ########################################### [100%]

 

4:caching-nameserver-9.3.3-7.el5.i386.rpm

[root@localhost Server]# rpm -ivh caching-nameserver-9.3.3-7.el5.i386.rpm
warning: caching-nameserver-9.3.3-7.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
Preparing...                ########################################### [100%]
   1:caching-nameserver     ########################################### [100%]

 

5:bind-chroot-9.3.3-7.el5.i386.rpm

[root@localhost Server]# rpm -ivh bind-chroot-9.3.3-7.el5.i386.rpm
warning: bind-chroot-9.3.3-7.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
Preparing...                ########################################### [100%]
        package bind-chroot-9.3.3-7.el5 is already installed

 

(2)启动服务和服务开机启动

1:启动服务

[root@localhost Server]# service named start
Starting named:                                            [  OK  ]

2:检测服务是否开机启动
[root@localhost Server]# chkconfig --list named
named           0:off   1:off   2:off   3:off   4:off   5:off   6:off

3:服务开机启动
[root@localhost Server]# chkconfig named on

 

你可能感兴趣的:(linux,server,header,service,dependencies)