狮子的雄心,骆驼的耐力,孩子的执著!
发布时间: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-02-12 14:04:13
mysql 最新的版本都需要cmake编译安装,估计以后的版本也会采用这种方式,所以特地记录一下安装步骤及过程,以供参考。注意:此安装是默认centos下已经安装了最新工具包,比如GNU make, GCC, Perl, libncurses5-dev,如果在编译安装过程中发现有缺失的工具包,先yum install 单独下载安装再继续即可。以下安.........【阅读全文】