grant select on xoms_prod.* to 'kzcf'@'%' identified by '123456'; 赋权多权限就 grant select,update,delete on xoms..... flush privileges; 然后这个语句保存权限show grants for kzcf; kzcf就是用户名 那个 %号表示所有机器都能访问 ==================在navicat-SQL执行界面,执行下面这条SQL语句 GRANT…
GRANT Select ON *.* TO reader@192.168.1.123 IDENTIFIED BY "123456" GRANT 可以立刻生效 在mysql 5.6下似乎要重启mysql才生效 创建了一个账户名为“reader" , 密码”123456“ 只可以从192.168.1.123发起访问 读取数据库的账号 reader@"%" 则表示所有的ip都可以访问 参考: http://linux.chinaitlab.com…
应用场景:只要公司有数据团队的,那免不了让这帮家伙把全公司的数据库数据都摸一遍,但是要是直接把root用户给了他们,未免有点危险,于是只能给这帮人设权限,一般而言,他们只是做读操作,既然做读操作,那么只要有个select权限就可以了. 我们可以通过GRANT来创建用户: GRANT SElECT ON *.* TO 'read_only_user'@'ip' IDENTIFIED BY "pa$$word" 其实这个语句与开通远程连接差不多,read_only_user就是用户名,随便…
-- 赋予某个库全部权限use mysql;grant all privileges on test_db.* to test_user@'%' identified by 'Aa123456';grant all privileges on test_db.* to test_user@'localhost' identified by 'Aa123456';flush privileges; -- 赋予某个库增删改查权限use mysql;grant select,insert,update…
mysql创建账号及管理权限 0.mysql版本8.0.15,服务器版本:RHEL 6.5 1.创建用户名密码 mysql> use mysql; mysql> create user 'username'@'%' identified by 'password'; 2.赋权 mysql> grant all privileges on *.* to 'username'@'%' with grant option;(授权全部数据库,***危险操作***,(查看PS2)) 3.刷新权限…
A:对于死锁,进程的操作 1.查找当前活跃事务 SELECT * from information_schema.INNODB_TRX 根据trx_started等判断事务是否异常锁定 2.杀死线程 Kill id(上面查询出来的trx_mysql_thread_id) B:创建读写账号 grant select,update,delete,insert on dbName.tableName to 'user'@'%' identified by 'password'; [select,upd…