狮子的雄心,骆驼的耐力,孩子的执著!
发布时间: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 .........【阅读全文】