DENIED Redis is running in protected mode because protected mode is enabled, no bind address was specified, no authentication password is requested to ...
分类:
其他好文 时间:
2021-04-30 12:41:09
阅读次数:
0
1、添加相应的权限和gradle引用<uses-feature android:name="android.hardware.nfc" android:required="true"/><uses-permission android:name="android.permission.NFC"/>a ...
分类:
移动开发 时间:
2021-04-29 12:22:33
阅读次数:
0
有时候我们有多个环境,开发环境、测试环境、生产环境,每个环境都有不同的配置信息 如何用一套代码,在不同环境上都能运行,spring的profile就是用来解决这个问题 比如想着测试环境加载一个配置类,那么这个类可以加上这个注解 @Component @Profile(value="test") pu ...
分类:
编程语言 时间:
2021-04-29 11:40:00
阅读次数:
0
First reader and writers problem (读者优先) no reader be kept waiting unless a writer has obtain permission to write semaphore rw=1, readcnt_m=1; int read ...
分类:
其他好文 时间:
2021-04-26 13:39:39
阅读次数:
0
今天在本机windows7上测试个git,想将git代码推送到代码服务器。结果git总是报错 $ git push -u origin master git@192.168.0.208's password: Permission denied, please try again. git@192. ...
分类:
其他好文 时间:
2021-04-21 12:18:25
阅读次数:
0
Java字符串 三个字符串类 String (不可变) StringBuilder (可变) StringBuffer(可变) 空字符串不是null,空字符串分配了空间,而null没有分配空间 不可变字符串的创建 package chapter8; public class chapt01 { pu ...
分类:
编程语言 时间:
2021-04-21 12:02:46
阅读次数:
0
官方定义 接口隔离原则(Interface Segregation Principle),又称ISP原则 1、 客户端不应该依赖它不需要的接口 2、 类间的依赖关系应该建立在最小的接口上 基本介绍 通俗的来讲,不要在一个接口中定义多个方法,接口应该尽量细化 package jiekogeli; pu ...
分类:
其他好文 时间:
2021-04-19 14:48:17
阅读次数:
0
记录一次修改mysql密码的完整过程(deepin系统) 登录数据库时出现: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) 在mysql 8.0版本的正确修改密码姿势为(deep ...
分类:
数据库 时间:
2021-04-19 14:47:56
阅读次数:
0
问题描述: git push 提交是碰到 git@gitee.com: Permission denied (publickey) 这是因为github/gitee没有设置SSH公钥或公钥失效 1)重新生成ssh ssh-keygen -t rsa -C "1351655382@qq.com" 2) ...
分类:
其他好文 时间:
2021-04-15 12:39:13
阅读次数:
0
主要测试了各方式clone的情况: 1. 安装gitlab,配置ip:port。 常规步骤: yum install -y curl policycoreutils-python openssh-server wget https://mirrors.tuna.tsinghua.edu.cn/git ...
分类:
其他好文 时间:
2021-04-15 12:08:39
阅读次数:
0