1.添加用户(有两种形式):
A.mysql> grant all on *.* to yushan@"%" identified by "123" ;
mysql>flush privileges; (刷新系统权限表)
(执行完会在mysql.user表插入一条记录,all表示所有权限(包括增 删 改 查等权限), *.* 表示所有数...
分类:
数据库 时间:
2015-03-06 09:43:33
阅读次数:
193
在操作MYSQL中注意两个概念:干什么都记得flush privileges;grant all on *.* to root@'localhost' identified by 'password' WITHGRANTOPTION记得要加WITHGRANTOPTION===============...
分类:
数据库 时间:
2015-03-04 18:23:12
阅读次数:
234
安装mysql1. yum install mysql mysql-server2. 修改mysql密码 >use mysql >update user set password=password("new_pass") where user="root"; >flush privileges;.....
分类:
数据库 时间:
2015-03-03 17:56:12
阅读次数:
190
增加一个用户、允许某个用户远程访问:grant all privileges on base_a.table_b to abc@192.168.12.16 identified by 'password';flush privileges;
分类:
数据库 时间:
2015-02-25 14:13:50
阅读次数:
151
How to grant remote access permissions to mysql server for user?授权先:GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.1.%' IDENTIFIED BY 'some_character....
分类:
数据库 时间:
2015-02-16 15:28:10
阅读次数:
195
flush privileges 命令本质上的作用是将当前user和privilige表中的用户信息/权限设置从mysql库(MySQL数据库的内置库)中提取到内存里。MySQL用户数据和权限有修改后,希望在"不重启MySQL服务"的情况下直接生效,那么就需要执行这个命令。通常是在修改ROOT帐.....
分类:
其他好文 时间:
2015-02-06 20:27:10
阅读次数:
154
两个表(员工表和部门表)中都有数据,但是点击视图查看数据的时候反而遇见这个问题,于是查询了一下资料解决办法如下:mysql> grant all privileges on *.* to root@"%" identified by ".";Query OK, 0 rows affected (0....
分类:
其他好文 时间:
2015-02-06 13:00:23
阅读次数:
169
privileged参数
$ docker help run
...
--privileged=false Give extended privileges to this container
...
大约在0.6版,privileged被引入docker。使用该参数,container内的root拥有真正的root权限。否则,container内的root只是外部的一个普通用户...
分类:
其他好文 时间:
2015-02-04 23:26:31
阅读次数:
253
mysql默认只允许本地连接,也就是说,在安装完mysql后会存在两个root账户,他们的host分别是localhost和127.0.0.1use mysql;update user set host='%' where user='root' flush privileges;这样的就可以了然后...
分类:
数据库 时间:
2015-02-04 18:35:57
阅读次数:
155
遇到了 SQLException: access denied for @'localhost' (using password: no) 解决办法 grant all privileges on *.* to joe@localhost identified by '1'; ...
分类:
数据库 时间:
2015-01-30 17:06:37
阅读次数:
160