boxmoe_header_banner_img

Hello! 欢迎来到众归云!

文章导读

BT宝塔定期同步服务器时间


avatar
王道 2023年11月5日 15

定期同步服务器时间

echo “|-正在尝试从0.pool.bt.cn同步时间..”;
ntpdate -u 0.pool.bt.cn
if [ $? = 1 ];then
echo “|-正在尝试从1.pool.bt.cn同步时间..”;
ntpdate -u 1.pool.bt.cn
fi
if [ $? = 1 ];then
echo “|-正在尝试从0.asia.pool.ntp.org同步时间..”;
ntpdate -u 0.asia.pool.ntp.org
fi
if [ $? = 1 ];then
echo “|-正在尝试从www.bt.cn同步时间..”;
getBtTime=$(curl -sS –connect-timeout 3 -m 60 http://www.bt.cn/api/index/get_time)
if [ “${getBtTime}” ];then
date -s “$(date -d @$getBtTime +”%Y-%m-%d %H:%M:%S”)”
fi
fi
echo “|-正在尝试将当前系统时间写入硬件..”;
hwclock -w
date
echo “|-时间同步完成!”;



评论(0)

查看评论列表

暂无评论


发表评论

表情 颜文字
插入代码