摘要:
1、登录jenkins报错提示hudson.security.AccessDeniedException 解决: 修改Jenkins_home/config.xml文件里面的一段内容改成如下 true true false 重新启动Jenkins (必须) 2、k8s中的部署的jenkins-master节点,登录jenkins直接是空白页,没有... 阅读全文
摘要:
https://www.cnblogs.com/yangxia-test/p/4368778.html https://blog.csdn.net/xlyrh/article/details/51384837 Jenkins的授权和访问控制 https://blog.csdn.net/cdnight 阅读全文
摘要:
jekins自动部署tomcat注意事项 千万不要用下面插件推送,报错很多, 要用脚本,一篇博客说的:“我们都是用的脚本,插件报错太多,也不完善” Deploy to container Plugin”, 连接tomcat报错解决 Jenkins部署:The username and password you provided are not correct (error 4... 阅读全文
摘要:
1、常用jenkins插件 插件相关下载地址:http://updates.jenkins-ci.org/download/plugins/ git.hpi git-client.hpi gitlab-hook.hpi gitlab-plugin.hpi kubernetes.hpi maven-plugin.hpi publish-over-ssh.hp... 阅读全文
摘要:
jenkins安装有下面三种方式,推荐且务必使用第三种方式安装1、rpm包安装jenkins 参考地址 https://www.cnblogs.com/qixing/p/5896512.html rpm安装包下载地址 https://pkg.jenkins.io/redhat-stable/ 配置仓库: sudo wget -O /etc/yum.repos.d/jenkin... 阅读全文
摘要:
1、Connecting to node 127.0.0.17000 [ERR] Sorry, can't connect to node 192.168.1.917000 redis集群:Connecting to node 127.0.0.1:7000: [ERR] Sorry, can't c 阅读全文
摘要:
redis持久化介绍 https://segmentfault.com/a/1190000015897415 1、 开启aof持久化、以守护进程启动、远程访问先把配置文件拷贝一份到/etc/redis/下面,目录随意 cp redis-3.2.4/redis.conf /etc/redis/ vim 阅读全文
摘要:
安装参照 https://blog.csdn.net/mingliangniwo/article/details/54600640 https://blog.csdn.net/u013820054/article/details/51354189 redis3.25集群配置文件- daemonize 阅读全文
摘要:
1、注释掉 bind 127.0.0.1 2、kill-9 杀死进行 3、redis-server + 配置文件进行重启, 阅读全文
摘要:
systemctl管理Redis启动、停止、开机启动 1. 创建服务 vi /lib/systemd/system/redis.service [Unit] Description=Redis After=network.target [Service] ExecStart=/usr/local/b 阅读全文