标签:io os on 数据 数据库 sql mysql br ca
导出数据库
#mysqldump -u root -h localhost -p -r /tmp/mysql-data.txt -B authpuppy
导入数据库
#mysql -u root -p
mysql>source /tmp/mysql-data.txt
mysql>create user ‘authpuppy‘@‘localhost‘ identified by ‘authpuppydev‘;
mysql>grant all privileges on authpuppy.* to ‘authpuppy‘@‘localhost‘ with grant option;
标签:io os on 数据 数据库 sql mysql br ca
原文地址:http://www.cnblogs.com/MarkGrid/p/4137324.html