-
详细错误内容
2015-02-05 02:56:24.777 2662 INFO neutron.agent.dhcp_agent [-] Synchronizing state 2015-02-05 02:56:24.794 2662 ERROR neutron.agent.dhcp_agent [-] Unable to sync network state. 2015-02-05 02:56:24.794 2662 TRACE neutron.agent.dhcp_agent Traceback (most recent call last): ...... 2015-02-05 02:56:24.794 2662 TRACE neutron.agent.dhcp_agent RemoteError: Remote error: AgentNotFoundByTypeHost Agent with agent_type=DHCP agent and host=network could not be found
没有发现Agent,我的Agent配置都是正确的,怎么会出现这样问题.网上有个回答提醒了我,时间是否同步
-
测试服务器的ntp
service ntp stop ntpdate -d
-
输出
root@controller:~# ntpdate -d 5 Feb 16:24:21 ntpdate[9257]: ntpdate 4.2.6p3@1.2290-o Sat Dec 20 11:46:51 UTC 2014 (1) 5 Feb 16:24:21 ntpdate[9257]: no servers can be used, exiting
发现我的ntp服务器是异常的.
/etc/ntp.conf的默认的服务器是有问题的. 因为访问不到,所有ntp同步时失败的,其他的客户端向服务器同步,也是失败的
-
修改服务器配置文件/etc/ntp.conf
# 增加,同步本地时间 server 127.127.1.0 # local clock (LCL) fudge 127.127.1.0 stratum 5 # LCL is unsynchronized # 启动ntp service ntp start
-
在其他客户端上配置上服务器的地址,进行同步时间
ntpdate -u ip-ntp-service(ntp服务器ip) # 写入硬件 hwclock --systohc