Linux上编译ntp后没有ntp.conf文件

Linux上编译ntp后没有ntp.conf文件

我使用的是 RHEL 6.5。我使用以下步骤编译了 ntp-4.2.8在此链接上

但我没有ntp.conf文件。ntp.conf需要启动 ntpd,但编译后,我的系统上没有 ntp.conf。我找到了ntp.conf.texi、、等。ntp.conf.5ntp.conf.defntp.conf.html

执行命令时文件ntpd -l logg出现错误logg

getconfig: Couldn't open </etc/ntp.conf>

我使用./configure与此链接相同的命令。我该如何生成ntp.conf

答案1

你应该自己创建这个文件。它在教程中,其中写道:

cat > /etc/ntp.conf << "EOF"
# Asia
server 0.asia.pool.ntp.org

# Australia
server 0.oceania.pool.ntp.org

# Europe
server 0.europe.pool.ntp.org

# North America
server 0.north-america.pool.ntp.org

# South America
server 2.south-america.pool.ntp.org

driftfile /var/lib/ntp/ntp.drift
pidfile   /var/run/ntpd.pid
EOF

整个命令将创建您的配置文件。当然,您可能想要编辑该文件并仅选择与您所在区域相关的服务器。

相关内容