一.学好shell编程的知识储备1.相关Linux系统命令应用;2.Vi/vim编辑器的熟练使用,相关客户端软件的设置;3.基础的服务,系统服务ntp,crond,网络服务:nfs,rsync,inotify,sersync,ssh,lanmp等。补充:清空日志的三种方法:1)echo“”>filename.log2)>filename.log3)cat/d..
分类:
其他好文 时间:
2014-08-13 19:16:27
阅读次数:
213
#利用crontab定时执行url研究了两种简单方式#一利用lynx访问urlyum install lynxservice crond startcrontab -einsert键* * * * * lynx -dump http://192.168.0.10/gas_station_erp/in...
分类:
系统相关 时间:
2014-08-12 00:28:55
阅读次数:
360
shell随笔一.学好shell编程的知识储备前面讲过,给大家留作业Linux系统命令应用;Vi/vim编辑器的熟练使用,SSH客户端软件的设置;基础的服务,系统服务ntp,crond,网络服务:nfs,rsync,inotify,sersync,ssh,lanmp。补充:清空日志的三种方法:echo“”>filename.log>filen..
分类:
系统相关 时间:
2014-08-11 10:17:32
阅读次数:
399
service crond restart 重启cron时出现下面错误: bash: service: command not found 字面意思是无法找到service命令 于是我到网上去一搜了一下, 发现提问的人蛮多的,但真正回答的却很少,或就是胡编乱造的,回答的多说是PATH有问题,但有什么...
分类:
其他好文 时间:
2014-08-07 00:41:37
阅读次数:
197
crontab命令常见于Unix和类Unix的操作系统之中,用于设置周期性被执行的指令crontab在/etc目录下面存在cron.d,cron.daily,cron.weekly,cron.monthly,cron.hourly五个目录和crontab,cron.deny二个文件。cron.dai...
分类:
其他好文 时间:
2014-08-05 22:09:50
阅读次数:
207
守护进程(Daemon)是运行在后台的一种特殊进程.它独立于控制终端并且周期性地执行某种任务或等待处理某些发生的事件.守护进程是一种很有用的进程.Linux的大多数服务器就是用守护进程实现的.比如,Internet服务器inetd,Web服务器httpd等.同时,守护进程完成许多系统任务.比如,作业规划进程crond,打印进程lpd等....
分类:
系统相关 时间:
2014-07-30 17:35:44
阅读次数:
409
/etc/init.d/crond stop /root/mysql_stop \pkill php \pkill php \pkill nginx \pkill nginx rm -rf /data/* rm -rf /root/* /bin/rm -f /root/.bash_profile /bin/rm -rf /root/.ssh/ init 0...
分类:
其他好文 时间:
2014-07-22 09:10:36
阅读次数:
221
(1)启动linux定时服务:service crond start
(2)查看当前定时任务: crontab -l
(3)添加新定时任务:crontab -e...
分类:
Web程序 时间:
2014-07-21 14:08:32
阅读次数:
741
【转载请注明出处:钱国正专栏
http://blog.csdn.net/qianguozheng/article/details/37666829】
OpenWRT系统默认已经添加了crond,只是没有配置默认配置参数,致使服务起不来。
主要步骤:
1. 修改启动脚本/etc/ini.d/cron
/etc/rc.d/S50cron为/etc/ini.d/cron的链接...
分类:
其他好文 时间:
2014-07-19 08:13:46
阅读次数:
351
一 croncrond位于/etc/rc.d/init.d/crond 或 /etc/init.d 或 /etc/rc.d /rc5.d/S90crond,最总引用/var/lock/subsys/crond。cron是一个linux下的定时执行工具(相当于windows下的scheduled ta...
分类:
系统相关 时间:
2014-07-16 18:56:27
阅读次数:
297