码迷,mamicode.com
首页 > 数据库 > 详细

mysql小知识

时间:2015-08-06 00:24:13      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

启动与停止mysql

windows_cmd        启动: net start mysql 

                   停止 : net stop mysql 

linux              启动 : service mysql start或 /etc/inint.d/mysqld start

                   停止 : service mysql stop或 /etc/inint.d/mysqld stop

登陆客户端

 mysql -uroot -proot -hlocalhost
-u后面是用户名 -p后面是密码 -h后面是主机名,可以省略,默认是localhost

允许远程访问mysql

GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘root‘ WITH GRANT OPTION;
FLUSH PRIVILEGES;

导入和导出sql文件

导入:source D:/test.sql 或mysql -uroot -proot test < /data/test.sql
导出:mysqldump -uroot -proot test > /opt/test.sql

 

 

 

 

 

 

 

 

 

                   

mysql小知识

标签:

原文地址:http://www.cnblogs.com/sflik/p/4706188.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!