在https://kubernetes.io/blog/2017/01/running-mongodb-on-kubernetes-with-statefulsets/ 基础上添加了密码认证,与解决提示权限mongo-sidecar提示权限错误问题 制作mongodb镜像(由于keyfile直接挂载 ...
分类:
数据库 时间:
2020-06-12 12:51:47
阅读次数:
184
华为交换机配置远程登录配置思路:一、密码认证登录模式1、进入管理视图2、进入用户视图:user-interfacevty043、设置认证模式:authentication-mode?aaaAAAauthenticationnoneLoginwithoutcheckingpasswordAuthenticationthroughthepasswordofauserterminalinterface4
分类:
其他好文 时间:
2020-06-08 10:37:23
阅读次数:
129
漏洞简介 Redis默认情况下,会绑定在0.0.0.0:6379,如果没有进行采用相关的策略,比如添加防火墙规则避免其他非信任来源ip访问等,这样将会将Redis服务暴露到公网上,如果在没有设置密码认证(一般为空)的情况下,会导致任意用户在可以访问目标服务器的情况下未授权访问Redis以及读取Red ...
分类:
其他好文 时间:
2020-06-01 14:10:47
阅读次数:
733
先无认证方式启动mongodb数据库 /Users/zlp/develop/mongodb/4.2.1/bin/mongod -f config.yaml > /dev/null 2>&1 & config.yaml systemLog: destination: file path: '/User ...
分类:
数据库 时间:
2020-05-22 21:26:38
阅读次数:
171
ssh的认证方式有很多种,大概可以概括为以下几类: 1.pam认证方式 在配置文件/etc/ssh/sshd_config中对应参数:UsePAM 2.密钥认证方式 配置文件/etc/ssh/sshd_config中对应参数:RSAAuthentication和PubkeyAuthenticatio ...
分类:
其他好文 时间:
2020-04-26 11:09:03
阅读次数:
57
redis哨兵模式增加密码认证 1、首选找到各个节点的redis.conf 打开文件内找到这一行 #requirepass 后面写密码 改成 requirepass 你自己的密码 2、然后修改 多个节点下的sentinel.conf # 当在Redis实例中开启了requirepass foobar ...
分类:
其他好文 时间:
2020-03-27 15:38:48
阅读次数:
135
问题: 直接从jdk官网下载会出现: 正在解析主机 login.oracle.com (login.oracle.com)... 156.151.58.18正在连接 login.oracle.com (login.oracle.com)|156.151.58.18|:443... 已连接。已发出 H ...
分类:
其他好文 时间:
2020-03-18 14:02:42
阅读次数:
87
1安装 docker pull redis:latest 2 启动容器并带密码 docker run --name myredis -p 6379:6379 -d --restart=always redis:latest redis-server --appendonly yes --requir ...
分类:
其他好文 时间:
2020-02-16 11:32:20
阅读次数:
86
前要:MySQL8后密码要求很高,要有大小写字母和数字特殊字符,导致自己忘记以前配置的密码 一、跳过mysql的密码认证,修改配置文件my.cnf $ ls /usr/local/etc/my.cnf /usr/local/etc/my.cnf # 修改配置文件, 添加 skip-grant-tab ...
分类:
数据库 时间:
2020-02-13 12:50:20
阅读次数:
538
密码认证器 默认的认证器是 org.apache.cassandra.auth.AllowAllAuthenticator。如果想要求客户端提供凭证,Cassandra提供另一种选择 org.apache.cassandra.auth.PasswordAuthenticatot 配置认证器 默认登录 ...
分类:
其他好文 时间:
2020-02-12 14:46:53
阅读次数:
118