对象的owner将权限赋予某个用户(如:testuser1)grant select ,update on bd_corp to testuser1 [with grant option ]1.如果带了 with grant option那么用户testuser1可以将select ,update权...
分类:
数据库 时间:
2015-03-04 18:46:26
阅读次数:
237
转自:http://chenling1018.blog.163.com/blog/static/14802542010320112355598/MySQL的权限系统围绕着两个概念:认证->确定用户是否允许连接数据库服务器授权->确定用户是否拥有足够的权限执行查询请求等。如果认证不成功的话,哪么授权肯...
分类:
数据库 时间:
2015-01-23 10:57:22
阅读次数:
224
一、创建新用户 insert into mysql.user(Host, User, Password) values ("localhost", "newuser", password("123456")); 如果报错将my.ini或者my.cnf,查找 sql_mode="STRICT_TRAN...
分类:
数据库 时间:
2014-11-18 17:31:35
阅读次数:
289
use mysql;GRANT USAGE ON *.* TO 'user_name'@'localhost' IDENTIFIED BY '123456' WITH GRANT OPTION;//授权user_name用户以密码123456访问数据库GRANT SELECT,INSERT,UPDA...
分类:
数据库 时间:
2014-10-09 14:09:13
阅读次数:
178
为指定IP授权GRANT ALL PRIVILEGES ON *.* TO 'userName'@'ip' IDENTIFIED BY 'password' WITH GRANT OPTION;泛授权GRANT ALL PRIVILEGES ON *.* TO 'userName'@'%' IDEN...
分类:
数据库 时间:
2014-09-23 01:29:13
阅读次数:
240
mysql用户和权限管理mysqld进程在启动的时候,将table,host,db,table_privs,clumn_privs,procs_privs,proxies_privs载入内存.用户账号: 用户名+主机 用户名:16字符以内. 主机: 主机名:mytest IP地址:172.168.1.20 网络地址:172.168.1.0/255.255.0.0 通配符: 172.168.%.% ..
分类:
数据库 时间:
2014-08-04 08:21:37
阅读次数:
428
cd /usr/local/mysql/bin/grant all privileges on *.* to 'root'@'%' identified by '12345678';flush privileges;grant select on weixin.wx_tuijian to 'bbc....
分类:
数据库 时间:
2014-07-02 17:55:37
阅读次数:
229