狮子的雄心,骆驼的耐力,孩子的执著!
发布时间:2012-06-28 11:38:14
......
发布时间:2012-06-22 10:23:21
......
发布时间:2012-06-20 22:56:29
一、主机环境 主机: master操作系统:rhel6.0ip:172.16.0.100 mysql版本:5.1.47 从机: slave操作系统:rhel6.0ip:172.16.0.200 mysql版本:5.1.47二、创建数据库 分别登录master机和slave机的mysql:mysql –u root –p 创建数据库:create database repl; 三、master机和slave机的相关配置 1、修改mas.........
发布时间:2012-06-13 15:27:27
mysql>grant all privileges on *.* to user1@% identified by "password";mysql>grant all privileges on *.* to "root"@"localhost" identified by "password";mysql>show grants for user1;mysql>drop user 'user1'@'%';mysql>revoke all privileges from 'user1'@'%' identified by "password";flush privileges.........
发布时间:2012-06-13 13:25:21
新版的 iptables 有个好用简单又有效率的功能,可以设定它阻止瞬间联机太多的来源 ip。这种阻挡功能在某些很受欢迎的,特别像是大型讨论区网站,每个网页都遭到「无知却故意」的人士。一瞬间太多的链接访问,导致服务器呈现呆滞状态。 这时,就需要下列的三行指令: iptables -i input -p tcp --dport 80 -d server_ip .........