centos中怎么设置时区,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
timedatectl status
centos7 都是这样的设置时区的。
RHEL7.4 192.168.100.1 作为时间服务器,其它主机到这台来同步时间。
时间服务器安装及配置:
#yum install chrony --RHEL7默认已安装chrony,而没有安装ntpd.
#systemctl status chronyd --查看chronyd服务状态
#systemctl enable chronyd --开机启动
#vi /etc/chrony.conf --修改配置文件
#server 0.rhel.pool.ntp.org iburst --注释这4行,由于是内网环境,所以无法跟外部时间服务器进行时间同步。 # Allow NTP client access from local network. |
#systemctl restart chronyd --修改完配置文件后,重启chronyd服务
[root@rhel1 ~]# netstat -antulp | grep chronyd |
1.显示系统的当前时间和日期
timedatectl
# timedatectl status
# 两条命令效果等同
[root@rhel1 ~]# timedatectl |
注意NTP synchronized值,只有时间服务器自己同步完成时间之后,才能为其它服务器提供时间同步服务。
2.设置日期与时间
timedatectl set-time "YYYY-MM-DD HH:MM:SS"
timedatectl set-time "YYYY-MM-DD"
timedatectl set-time "HH:MM:SS"
3.查看所有可用的时区
timedatectl list-timezones
# 亚洲
timedatectl list-timezones | grep -E "Asia/S.*"
4.设置时区
timedatectl set-timezone Asia/Shanghai
5.设置硬件时间
# 硬件时间默认为UTC
timedatectl set-local-rtc 1
# hwclock --systohc --localtime
# 两条命令效果等同
6.启用NTP时间同步
timedatectl set-ntp yes
# yes或no; 1或0也可以
问题:不明白这里启用ntp时间同步有啥意义。难道是说可以在时间服务器上都安装chronyd和ntpd服务来同时提供时间服务吗????如果设置为yes,手动设置时间则报错。看本文结尾。
7、查看时间源信息
[root@rhel1 ~]# chronyc sources .-- Source mode '^' = server, '=' = peer, '#' = local clock. |
客户端时间同步配置:
1.yum install chrony –y
2.修改配置文件
[root@rhel2 ~]# vi /etc/chrony.conf |
3.重启chronyd并设置开机启动
[root@rhel2 ~]# systemctl restart chronyd.service
[root@rhel2 ~]# systemctl enable chronyd.service
4. 查看时间同步状态
[root@rhel2 ~]# timedatectl |
重启chronyd服务后,需要过几分钟才会自动完成同步。
如果需要手动,可使用下面的命令:
#ntpdate 192.168.100.1 如果同步失败,则可能 是服务端的时间未同步。即服务端NTP synchronized 为no。
============================
手动修改时间时,必须把NTP enabled 设置为no.
[root@rhel1 ~]# date |
如果把NTP enabled 修改为yes时,表示开启自动同步时间,此时,是不能手动修改时间的。
如果为No时,表示关闭自动同步时间。
[root@rhel1 ~]# timedatectl set-ntp yes
[root@rhel1 ~]# timedatectl set-time "2017-10-08 11:00:50"
Failed to set time: Automatic time synchronization is enabled
[root@rhel1 ~]# timedatectl set-ntp no
[root@rhel1 ~]# timedatectl set-time "2017-10-08 11:00:50"
[root@rhel1 ~]# date
Sun Oct 8 11:00:51 CST 2017
关于centos中怎么设置时区问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注亿速云行业资讯频道了解更多相关知识。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。