-
进入MySQL:mysql -u 账号 -p
-
展示所有的数据库:show databases;
-
进入某个数据库:use 数据库名称;
-
查询操作:select * from 表名称;
5.连接问题: image.png
- 给某个ip授权:
grant all privileges on *.* to 'root'@'192.168.1.1' identified by '123456'
- 给所有ip授权:
grant all privileges on *.* to 'root'@'%' identified by '123456'
3.授权之后立即生效:
flush privileges;
- 如果想要撤销赋予的权限:
revoke all on *.* from 'root'@'%' identified by '123456';
- 执行SQL语句:source /home/***.sql
网友评论