CentOS7设置日系统时间为中国时区并启用NTP同步

参考资料

CentOS 7 设置日系统时间为中国时区并启用NTP同步 https://developer.aliyun.com/article/668836

正文

安装ntp服务
[root@cgmcentos7 ~]# yum install -y ntp
开机启动服务
[root@cgmcentos7 ~]# systemctl enable ntpd
启动服务
[root@cgmcentos7 ~]# systemctl start ntpd
更改时区
[root@cgmcentos7 ~]# timedatectl set-timezone Asia/Shanghai
启用ntp同步
[root@cgmcentos7 ~]# timedatectl set-ntp yes
同步时间
[root@cgmcentos7 ~]# ntpq -p

 

上一篇:centos-ntp服务器设置


下一篇:Spring5复习:创建字段属性Formatter工厂的注解(自定义字段格式化注解)