一、linux设置开机同步时间
在/etc/init.d/下新建synchronized_date脚本,添加如下内容: #!/bin/bash #chkconfig: 345 63 37 /usr/sbin/ntpdate ntp1.aliyun.com >> /var/log/ntpdate.log 注释: #chkconfig:345 63 37 (数字345是指在运行级别为3、4、5时启动;数字63是指启动的优先级;数字 37是指停止的优先级)
二、修改脚本属性
在linux系统中修改脚本属性 [root@node init.d]$ sudo chmod 755 synchronized_date
三、设置开机自启动
使用chkconfig命令将脚本设置为开机自启 配置脚本自启动 [root@node init.d]$ sudo chkconfig --level 345 synchronized_date on