Linux系统下配置网络时间的步骤(linux网络时间设置)
Linux系统下配置网络时间的步骤
在Linux系统下,为保持时间的准确性,往往需要配置网络时间。配置网络时间主要有两种方法,第一种是使用ntpd守护进程;第二种是使用rdate工具。Linux系统下配置网络时间的具体步骤如下:
一、配置ntpd守护进程
1、安装ntp软件,在RedHat系统中可使用yum install ntp命令安装;在Debian系统中可使用apt-get install ntp或aptitude install ntp安装
2、在/etc/ntp.conf文件中添加以下内容:
driftfile /var/lib/ntp/drift
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
server 127.127.1.0 fudge 127.127.1.0 stratum 10
server 0.centos.pool.ntp.org
server 1.centos.pool.ntp.org
server 2.centos.pool.ntp.org
其中0.centos.pool.ntp.org、1.centos.pool.ntp.org、2.centos.pool.ntp.org 可替换成其他NTP服务器
3、启动/关闭ntpd服务,并设置开机自动启动:
启动:/etc/rc.d/init.d/ntpd start
关闭:/etc/rc.d/init.d/ntpd stop
设置开机自动启动:chkconfig ntpd on
4、更新本机时间:
/usr/sbin/ntpdate -u 0.centos.pool.ntp.org
二、使用rdate工具
1、安装rdate:即在RedHat系统中使用yum install rdate命令,在Debian系统中使用apt-get install rdate或aptitude install rdate命令安装
2、更新本机时间:
/usr/sbin/rdate -s time.nist.gov
以上就是Linux系统下配置网络时间的具体步骤,要想保持系统正确的时间,最好每隔一段时间就运行上述步骤,以确保时间准确。