mysql常用命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql常用命令相关的知识,希望对你有一定的参考价值。
#链接数据库
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常用命令的主要内容,如果未能解决你的问题,请参考以下文章