博客是我工作的好帮手,遇到困难就来博客找资料
发布时间:2016-07-13 14:20:18
1、iptables -L查看filter表的iptables规则,包括所有的链。filter表包含INPUT、OUTPUT、FORWARD三个规则链。说明:-L是--list的简写,作用是列出规则。2、iptables -L [-t 表名]只查看某个表的中的规则。说明:表名一共有三个:filter,nat,mangle,如果没有指定表名,则默认查看fil.........【阅读全文】
发布时间:2016-07-13 12:06:34
iptables由3个表filter,nat,mangle组成,主要实验了filter表,这个表是用来过滤数据包的,有三个链INPUT,OUTPUT,FORWARD。配置防火墙策略有固定的格式Iptables 表名 链名 匹配条件 动作-t 表名 (默认为filter)-A 链.........【阅读全文】
发布时间:2016-07-07 16:08:28
从不同的表复制insert into 表1 select * from 表2 where id =** ; 同一张表中复制(无主键)insert into 表1 select * from 表2 where id =** ; 同一张表中复制(有主键)insert into 表1(字段1,字段2,字段3) select 字段1,字段2,字段3 from 表1 where id= ** ; .........【阅读全文】
发布时间:2016-07-01 17:54:07
MySQL多实例配置方法 1、单一配置文件 2、多配置文件。二、实战步骤: 1、同步时间 2、准备mysql依赖包 3、环境准备 3.1添加mysql用户 &nbs.........【阅读全文】
发布时间:2016-06-30 16:59:28
#fdisk -l /dev/sda Disk /dev/sda: 320.0 GB, 320072933376 bytes 255 heads, 63 sectors/track, 38913 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System /dev/sda1 * 1 13 104391 83 Linux /dev/sda2 14 38913 312464250 8e L.........【阅读全文】