Only to find a successful way, not to find excuses for failure!
发布时间:2013-03-22 10:38:01
Linux 禁ping和开启ping操作# echo 1 > /proc/sys/net/ipv4/icmp_echo_ignore_all如果要恢复,只要:# echo 0 > /proc/sys/net/ipv4/icmp_echo_ignore_all即可,挺方便,不要去专门使用ipchains或者iptables了。或者用以下方法也可以,异曲同工以root进入Linux系统,然后编.........【阅读全文】
发布时间:2013-03-18 11:09:57
计划任务自动备份网站数据#!/bin/sh#备份网站数据cd /data/www/savedir=/backup/wwwbackup/`date +%F`echo $savedir;if [ ! -d "$savedir" ];then mkdir "$savedir"fifind /data/www/ -maxdepth 1 -type d|cut -d/ -f4 >file1for file2 in $(cat file1);doif [ -d "$file2" ]; t.........【阅读全文】
发布时间:2013-01-22 22:35:10
HTTP Server 访问日志的格式定义日志的格式我们可以在 ?HTTP Server 的配置文件中,使用预定义的经典格式,或者自定义访问日志的格式。下文中如无特别说明,将假设日志使用名称为?combined的经典格式。 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combine.........【阅读全文】
发布时间:2013-01-22 22:22:01
需求:需要将数据表中一个字段的值里面的所有的 . 替换成 _ 原来的数据是 site.title site.keywords ....替换后要为 site_title site_keywords 使用的SQL语句如下: updat.........【阅读全文】