Jira 8.5.5 安装 2020-06-30 其它 Jira安装和破解过程和Confluence安装差不多。 环境准备 1 2 3 [root@confluence ~]# cat /etc/redhat-release CentOS Linux release 7.8.2003 (Core) [root@confluence ~]# yum install -y java-1.8.0-openjdk unzip 准备数据库 Mysql 5.7安装和配置可以参考C 阅读更多
Confluence 7.4.1 安装 2020-06-29 其它 环境准备 1 2 3 [root@confluence ~]# cat /etc/redhat-release CentOS Linux release 7.8.2003 (Core) [root@confluence ~]# yum install -y java-1.8.0-openjdk unzip 安装Mysql confluence 需要依赖数据库,支持Mysql、PostgreSQL、Orace等各种数据库, 阅读更多
Nexus集成LDAP认证(笔记) 2020-06-23 LDAP 安装 下载安装包: https://www.sonatype.com/download-oss-sonatype 安装 1 2 3 4 yum install -y java-1.8.0-openjdk tar zxvf nexus-3.24.0-02-unix.tar.gz -C /opt/ ln -s /opt/nexus-3.24.0-02/ /opt/nexus /opt/nexus/bin/nexus start 初始密码: 1 cat /opt/sonatype-work/nexus3/admin.password 集成LDAP 参考 https://help.sonatype.com/iqserver/managing/user-management/ldap-integration 阅读更多
Gitlab集成LDAP认证(笔记) 2020-06-23 LDAP Gitlab安装 1 2 3 yum install -y curl policycoreutils-python openssh-server openssh-clients curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash sudo EXTERNAL_URL="https://gitlab.dianduidian.com" yum install -y gitlab-ce 集成LDAP认证 vim /etc/gitlab/gitlab.rb 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 gitlab_rails['ldap_enabled'] = true gitlab_rails['ldap_servers'] = 阅读更多
Kubernetes Ingress 400 Bad Request 问题处理过程复盘 2020-06-21 kubernetes 复盘 突然接到同事反馈说是线上某些接口偶尔会报400 Bad Request错误,去现场复现了下问题,习惯性的打开开发者工具查找错误细节,发现Quer 阅读更多
都是Post提交,Form Data与Request Payload有啥区别 2020-05-26 Http 最近在学习Gin,今天在测试接受Post数据时,相当然的以为服务端使用PostForm就能接收数据,结果发现怎么也接收不到,看来还是太nai 阅读更多
Nginx配置跨域不生效可能是这个原因 2020-05-25 Nginx 今天debug一跨域问题,本来觉得就一很简单的问题,结果被无情打脸,费了老大劲了,有必要复盘下。 同样的接口Get好使而POST就是不行,前端 阅读更多
OpenVPN Server搭建及使用客户端证书认证 2020-05-13 OpenVPN 环境准备 CentOS7 1 2 [root@openvpn ~]# cat /etc/redhat-release CentOS Linux release 7.7.1908 (Core) 安装软件 1 yum install -y easy-rsa openvpn openvpn-auth-ldap 1 2 3 [root@openvpn ~]# rpm -qa |grep openvpn openvpn-2.4.8-1.el7.x86_64 openvpn-auth-ldap-2.0.3-17.el7.x86_64 其中easy-rsa主要用来给OpenVPN Server启动要用 阅读更多
Kubernetes Deployment滚动更新原理解析 2020-04-07 kubernetes 分析基于kubernetes-1.15.5源码。 Deployment是新一代用于Pod管理的资源对象,除了继承了Replication的全部 阅读更多
OpenVPN Server搭建及使用LDAP做登录认证 2020-04-04 OpenVPN 环境准备 CentOS7 1 2 [root@openvpn ~]# cat /etc/redhat-release CentOS Linux release 7.7.1908 (Core) 安装软件 1 yum install -y easy-rsa openvpn openvpn-auth-ldap 1 2 3 [root@openvpn ~]# rpm -qa |grep openvpn openvpn-2.4.8-1.el7.x86_64 openvpn-auth-ldap-2.0.3-17.el7.x86_64 其中easy-rsa主要用来给OpenVPN Server启动要用 阅读更多