在andorid进行调试的过程中,出现下面的错误:解决方法:修改一下应用程序描述符:修改上面的参数就可以了。
分类:
移动开发 时间:
2014-09-28 14:25:12
阅读次数:
217
MySQL5.1.73参数Variable_name Valueauto_increment_increment 1auto_increment_offset 1autocommit ONautomatic_sp_privileges ONback_log ...
分类:
数据库 时间:
2014-09-24 04:36:25
阅读次数:
678
为指定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
今天打开电脑更新一下 Xcode出现如下提示(Agreeing to the Xcode/iOS license requires admin privileges, please re-run as root via sudo.),
顿时在我的项目中的git提示也不存在了
根据提示 打开 Xcode 点击同意,就安装提示了,安装之后再看看 Ok,可以...
分类:
移动开发 时间:
2014-09-22 17:03:52
阅读次数:
689
mongodb启动正常,启动后使用mongo命令连接,连一次mongodb进程挂一次,最后看日志:2014-09-21T10:44:26.400+0800 [initandlisten] ERROR: Insufficient free space for journal files2014-09-...
分类:
其他好文 时间:
2014-09-21 11:41:00
阅读次数:
160
CREATE DATABASE IF NOT EXISTS mydb DEFAULT CHARSET utf8 COLLATE utf8_general_ci;CREATE USER 'root'@'%' IDENTIFIED BY '123456';GRANT ALL PRIVILEGES ON ...
分类:
数据库 时间:
2014-09-12 22:03:14
阅读次数:
285
Issue:Reporting Services ErrorThe permissions granted to user 'IDEAAM\William' are insufficient for performing this operation. (rsAccessDenied) Get On...
分类:
数据库 时间:
2014-09-09 11:22:48
阅读次数:
264
1.只新建用户的操作mysql -u root -p密码mysql> insert into mysql.user(Host,User,Password) values(‘localhost’,'czc’,password('root'));mysql>flush privileges;mysql>...
分类:
数据库 时间:
2014-09-04 16:24:39
阅读次数:
278
根据提示便知是权限问题,用下面的命令查询objects下有root权限的文件ll .git/objects/ | grep rootdrwxr-xr-x 2 root root 4096 3月 1 21:40 3ddrwxr-xr-x 2 root root 4096 3月 1 21:4...
分类:
数据库 时间:
2014-09-02 21:22:25
阅读次数:
261
# mysql -uroot -p mysql> use mysql;mysql> select Host,User from user; 只需要展示用户名和host即可mysql> grant all PRIVILEGES on *.* to wudaogang@'192.168.2.96' .....
分类:
数据库 时间:
2014-08-30 20:17:59
阅读次数:
211