k8s学习笔记——设置ntp服务器
1、安装apt install -y ntp ntpdatentpdate -u times.aliyun.com//设置时区sudo dpkg-reconfigure tzdata //配置时区,选择shanghai2、找到 server ntp 服务器 iburst 的记录,用 # 注释掉sudo vim /etc/ntp.conf3、添加阿里云 NTP 服务器地址server 0.cn.po
·
1、安装
apt install -y ntp ntpdate
ntpdate -u times.aliyun.com
//设置时区
sudo dpkg-reconfigure tzdata //配置时区,选择shanghai
2、找到 server ntp 服务器 iburst 的记录,用 # 注释掉
sudo vim /etc/ntp.conf
3、添加阿里云 NTP 服务器地址
server 0.cn.pool.ntp.org iburst
server 1.cn.pool.ntp.org iburst
server 2.cn.pool.ntp.org iburst
server 3.cn.pool.ntp.org iburst
4、设置开机启动
systemctl start ntp
systemctl enable ntp
更多推荐
已为社区贡献29条内容
所有评论(0)