[原创]centos6.5 dhcpd 服务一直failed状态

因为要部署kickstart自动化系统分发,所以需要在上面配置dhcp服务器,之前也使用同样的机器进行配置,没是没有问题的,但是这次在配置了dhcpd.conf文件后,重启服务的时候却一直提示

[root@localhost ~]# service dhcpd restart
Starting dhcpd: [FAILED]

首先是以为dhcpd.conf的问题,进行配置文件的检查,并重点关注是否有标点的中英文格式问题,全部重新输入后还是提示failed,配置如下

ddns-update-style interim;
ignore client-updates;
allow booting;
allowbootp;
subnet 172.16.10.0 netmask 255.255.255.0
{
option routers 172.16.10.1;
option domain-name "s.un";
option domain-name-servers 172.16.10.1;
option subnet-mask 255.255.255.0;
option time-offset -;
default-lease-time ;
max-lease-time ;
range dynamic-bootp 172.16.10.200 172.16.10.250;
filename "pxelinux.0";
next-server 172.16.10.11;
}

  查看/var/log/message日志文件,

Nov  :: localhost dhcpd: For info, please visit https://www.isc.org/software/dhcp/
Nov :: localhost dhcpd: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
Nov :: localhost dhcpd: Can't chown new lease file: Operation not permitted

  从这里应该可以确认是Can't chown new lease file: Operation not permitted这句的问题,应该是lease的权限问题,在这里我做了两个操作

  1.直接删除/var/lib/dhcpd下的所有lease结尾的文件

  2.直接把iptables关闭

  不过都不生效,查资料才知道应该是linux的selinux造成的问题,把selinux关闭就可以了

  

、临时关闭(不用重启机器):
setenforce ##设置SELinux 成为permissive模式
              ##setenforce 设置SELinux 成为enforcing模式
、修改配置文件需要重启机器:
修改/etc/selinux/config 文件
将SELINUX=enforcing改为SELINUX=disabled
重启机器即可
上一篇:json转换(c#后台生成json的方法)


下一篇:android ipc通信机制之之三,进程通讯方式。