我正在使用RHEL 8,ntp包不再受支持,它是由chronyd守护进程实现的,该守护进程在chrony包中提供。该文件被设置为使用pool.ntp.org项目(池2.rhel.pool.ntp.org iburst)中的公共服务器。有没有办法设置服务器而不是池?
我的chrony.conf文件:
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
pool 2.rhel.pool.ntp.org iburst发布于 2019-09-26 00:44:05
是。只需注释掉pool行,然后添加一个包含所需服务器行的服务器:
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
# pool 2.rhel.pool.ntp.org iburst
server 0.africa.pool.ntp.org iburst
server 0.us.pool.ntp.org
server 0.south-america.pool.ntp.orghttps://stackoverflow.com/questions/57713170
复制相似问题