命令窗口登录MYSQL,管理员命令窗口输入(mysql -u用户名 -p密码):
默认端口登录方式:
mysql -uroot -proot
指定端口登录方式(mysql -u用户名 -p密码 --protocol=连接方式 --host=ip地址 --port=端口号):
mysql -uroot -p123456 --protocol=tcp --host=localhost --port=3307
如果是新安装的MYSQL第一次命令窗口访问的时候会提示1045或没有访问权限或密码错误,因为新的MYSQL会有默认密码,需要我们进行操作设置密码后才能操作。
解决方法:
修改mysql安装目录下的my.ini配置文件(有的版本my.ini文件在 C:\ProgramData\MySQL 这个路径下)
1:在[mysqld]标签下添加(跳过权限验证):
skip-grant-tables
2:重启后重新登录试试,这次登录不需要输入密码可以直接回车登录:
mysql -uroot -p
3:查看所有的数据库:
show databases;
4:进入指定的数据库:
use mysql;
5:查看数据库下所有的数据库表:
show tables;
(操作表的话就要使用各种MYSQL的CRUD语句了。):
6:查看所有用户权限信息:
select host,user from user;
7:修改用户密码:
UPDATE user SET Password=PASSWORD(‘123456‘) where USER=‘root‘;
8:退出MYSQL:
exit;
9:这时候我们需要把my.ini配置文件里添加的那条命令去除掉,然后重启服务再次登录即可。
其他命令:
新建用户usertest:
localhost:允许用户本地访问mysql;
%:允许用户远程访问mysql;
create user ‘usertest‘@‘localhost‘ identified by ‘123456‘;
create user ‘usertest‘@‘%‘ identified by ‘123456‘;
权限:
通过root用户登录之后操作
刷新权限:
(mysql 新设置用户或更改密码后需用flush privileges刷新MySQL的系统权限相关表,否则会出现拒绝访问,还有一种方法,就是重新启动mysql服务器,来使新设置生效)
flush privileges ;
给予用户权限:
1:设置用户访问数据库权限
设置用户usertest,可以访问mysql上的所有数据库 ;
grant all privileges on *.* to usertest@localhost identified by "123456" ;
设置用户usertest,只能访问数据库test_db,其他数据库均不能访问 ;
grant all privileges on test_db.* to usertest@localhost identified by "123456" ;
设置用户usertest,只能访问数据库test_db的表user_infor,数据库中的其他表均不能访问 ;
grant all privileges on test_db.user_infor to usertest@localhost identified by "123456" ;
2:设置用户操作权限
设置用户usertest,拥有所有的操作权限,也就是管理员 ;
grant all privileges on *.* to usertest@localhost identified by "123456" WITH GRANT OPTION ;
设置用户usertest,只拥有【查询】操作权限 ;
grant select on *.* to usertest@localhost identified by "123456" WITH GRANT OPTION ;
设置用户usertest,只拥有【查询\插入】操作权限 ;
grant select,insert on *.* to usertest@localhost identified by "123456" ;
设置用户usertest,只拥有【查询\插入】操作权限 ;
grant select,insert,update,delete on *.* to usertest@localhost identified by "123456" ;
取消用户usertest的【查询\插入】操作权限 ;
REVOKE select,insert ON what FROM usertest;
3:设置用户远程访问权限
设置用户usertest,只能在客户端IP为192.168.1.100上才能远程访问mysql ;
grant all privileges on *.* to usertest@“192.168.1.100” identified by "123456" ;
4:关于root用户的访问设置
设置所有用户可以远程访问mysql,修改my.cnf配置文件,将bind-address = 127.0.0.1前面加“#”注释掉,这样就可以允许其他机器远程访问本机mysql了;
设置用户root,可以在远程访问mysql:
grant all privileges on *.* to root@"%" identified by "123456" ;
查询mysql中所有用户权限:
select host,user from user;
5:关闭root用户远程访问权限:
禁止root用户在远程机器*问mysql:
delete from user where user="root" and host="%" ;
修改权限之后,刷新MySQL的系统权限相关表方可生效
flush privileges ;