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

mysql常用命令

时间:2017-10-31 11:05:50      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:数据库   mysql   使用   date   password   stop   cal   star   脚本   

#链接数据库
mysql -h 192.168.101.148 -u root -p
#允许远程链接
mysql> GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘123456‘ WITH GRANT OPTION;
操作完后切记执行以下命令刷新权限
FLUSH PRIVILEGES
#修改某个账号的密码
mysql> update user set password=password(‘123‘) where user=‘root‘ and host=‘localhost‘;
#使用 mysqld 脚本启动 关闭,重启:
/etc/init.d/mysqld start


/etc/init.d/mysqld stop

/etc/init.d/mysqld restart

mysql常用命令

标签:数据库   mysql   使用   date   password   stop   cal   star   脚本   

原文地址:http://www.cnblogs.com/baogechen/p/7760191.html

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