linux 系统时间相差5分钟,http请求有影响吗
答案:2 悬赏:50 手机版
解决时间 2021-03-01 12:02
- 提问者网友:眉目添风霜
- 2021-02-28 22:47
linux 系统时间相差5分钟,http请求有影响吗
最佳答案
- 五星知识达人网友:舊物识亽
- 2021-02-28 23:57
1、没有影响,http访问时候不会调用系统时钟
2、你可以用计划任务每天同步时间服务器的时钟
crontab -e
0 0 * * * /usr/sbin/ntpdate timeserver;/sbin/hwclock -w;
2、你可以用计划任务每天同步时间服务器的时钟
crontab -e
0 0 * * * /usr/sbin/ntpdate timeserver;/sbin/hwclock -w;
全部回答
- 1楼网友:山君与见山
- 2021-03-01 00:12
想必你已经在chinaunix上找到答案了吧。
a=`stat -c %y filename`;b=`date +%s`;if [ $[ $b - $a ] -gt 180 ];then command;else othercommand;fi就挺好的
但是你要注意在crontab中执行的时候需要加source一下环境变量,不然有些命令会找不到路径。
如:
0-59 * * * * . /etc/profile;a=`stat -c %y filename`;b=`date +%s`;if [ $[ $b - $a ] -gt 180 ];then command;else othercommand;fi
. /etc/profile可以换成你用户目录下的配置文件.
c shell的为 .cshrc 在用户主目录下
bashell的为 .bashrc 在用户主目录下
kshell的为.profile 在用户主目录下
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯