系统相关
首页 > 系统相关> > linux之ntp服务

linux之ntp服务

作者:互联网

linux之ntp服务


ntp服务

**作用:**npt 主要用于对计算机时间的同步管理操作

时间对服务器来说是很重要的,一般很多网站都需要读取服务器时间来记录相关信息,如果时间不准,则可能造成较大影响。

同步服务器的两种方法:

1.一次性同步时间(同步上游服务器时间)

# ntpdate 时间服务器的域名或ip地址

ip地址查看可以访问:http://www.ntp.org.cn/pool

2.设置时间同步的服务

服务名:ntpd

启动 ntpd 服务

# service htpd start
或者
# /etc/init.d/ntpd start

检查 ntpd 服务有没有设置开机启动

# chkconfig --list|grep ntpd

开启 ntpd 服务

# chkconfig --level 35 ntpd on

开启之后则可以自动开机自启,无需再手动进行刷新时间。


标签:同步,服务,ntp,时间,linux,服务器,ntpd
来源: https://blog.csdn.net/qq_47255712/article/details/118674265