两个表(员工表和部门表)中都有数据,但是点击视图查看数据的时候反而遇见这个问题,于是查询了一下资料解决办法如下: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
今天用真机测试,出现了下面的情况 , 网上找了好多情况 , 都感觉比较费事,没什么效果,报错依旧,
[2013-08-06 16:31:04 - Flashlight] Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE
[2013-08-06 16:31:04 - Flashlight] Please check logcat out...
分类:
其他好文 时间:
2015-02-04 21:54:37
阅读次数:
215
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
今天无聊用virtualbox安装centos6.5 , 自己笔记本vm撑不住, 用公司的试试virtualbox先安装快完成时 没有足够的内存配置kdump”(在英文界面下提示的是“insufficient memory to configure kdump”)出现这个提示, 解决办法, 按这篇....
分类:
其他好文 时间:
2015-02-02 15:36:08
阅读次数:
436
遇到了 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
今天一台邮件服务器无法收发邮件,控制台报大量的“Insufficient TCP sockets are available”。...
分类:
其他好文 时间:
2015-01-27 11:16:29
阅读次数:
138
Create/Drop/Grant/Revoke Roles and PrivilegesHive Default Authorization - Legacy Modehas information about these DDL statements:CREATE ROLEGRANT ROLER...
分类:
其他好文 时间:
2015-01-24 22:39:12
阅读次数:
445
eclipse 真机调试报Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE
[Please check logcat output for more details.
Launch canceled! 错误
解决办法:
在配置文件:AndroidManifest.xml加入如下代码:
package="com....
分类:
系统相关 时间:
2015-01-21 16:42:21
阅读次数:
287