hadoop 大数据环境配置 同步时间 centos服务器时间同步 linux 安装ntp服务更新时间 hadoop(六)

1. 安装ntp软件

yum install -y ntp

2.创建软连接

# 删除之前得时间
sudo rm -rf /etc/localtime;

# 更新时区
 sudo ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

3. 更新时间

# root 权限运行
sudo ntpdate -u ntp.aliyun.com

4. 开机自启,更新时间

# 开机启动
sudo systemctl start ntpd
# enable  
sudo systemctl enable ntpd

5.结束

你可能感兴趣的:(大数据,大数据,hadoop,linux)