作为初学者,要想取得进步,成为高手,首先应该了解自己的不足之处.
全部博文(117)
发布时间:2011-05-27 18:24:28
说明该脚本参考网上资料和一些服务启动的脚本,功能是用于短时间ping大量服务器。将ping通与ping不通的主机IP地址,分别记录在success与failure文件中。缺点,暂时还不能打出ping的时间,由于多进程并行,重定向日志会出现混乱,日后改进,可能用数据库保存结果,是一种解决办法shells.........【阅读全文】
发布时间:2011-01-20 14:47:41
1·建表语句如下:CREATE TABLE `bak_stat` ( `id` INT(10) NOT NULL AUTO_INCREMENT, `date_ymd` DATE NULL DEFAULT NULL, `s_time` TIME NULL DEFAULT '00:00:00', `e_time` TIME NULL DEFAULT '00:00:00', `mod_name` CHAR(20) NULL DEFAULT NULL, `files` BIGINT(20) NULL DEFAULT NULL,.........【阅读全文】
发布时间:2011-01-20 14:45:39
#!/usr/bin/python#-*- coding: UTF-8 -*-import MySQLdb,cgi,time,datetime today = datetime.datetime.now()today_0 = today.strftime('%Y-%m-%d')today_1 = (today + datetime.timedelta(days = -1)).strftime('%Y-%m-%d')today_2 = (today + datetime.timedelta(days = -2)).strftim.........【阅读全文】
发布时间:2011-01-20 14:43:05
#!/usr/bin/python'''The rsync_server config'''import os,stat,sys,timenow=time.strftime('%Y%m%d%H%M')cfgrsyncd='''#rsyncd#uid = rootgid = rootuse chroot = nomax connections = 5lock file = /var/log/rsync/rsyncd.locklog file = /var/log/rsync/rsyncd.logpid file = /var/log/rsync/rsyncd.........【阅读全文】