摘要:
**Kubernetes上使用Rook部署Ceph系统并提供PV服务:** http://www.yangguanjun.com/2018/12/22/rook-ceph-practice-part1/ **Rook定制化和管理Ceph集群:** http://www.yangguanjun.com 阅读全文
摘要:
1.准备kube-vip的配置文件 # master01节点的配置文件 vim /etc/kube-vip/config.yaml localPeer: id: master01 address: 192.168.200.151 port: 10000 remotePeers: - id: mast 阅读全文
摘要:
``` 1.安装openldap yum install -y openldap openldap-clients openldap-servers systemctl start slapd systemctl enable slapd firewall-cmd --add-service=lda 阅读全文
摘要:
``` #/etc/openvpn/server.conf ;local a.b.c.d 定义openvpn监听的IP地址,如果是服务器单网卡的也可以不注明,但是服务器是多网卡的建议注明。 port 1194 定义openvpn监听的的端口,默认为1194端口。 proto tcp ;proto u 阅读全文
摘要:
1.环境规划 主机名 外网IP 内网IP 角色 openvpn 10.0.0.1 172.25.25.10 OpenVPN服务端 web01 172.25.25.20 内网主机 web02 172.25.25.30 内网主机 client 10.0.0.2 OpenVPN客户端 2.生成证书 2.1 阅读全文
摘要:
``` 1、安装openvpn-auth-ldap 插件 yum -y install epel-release && yum -y install openvpn-auth-ldap 安装完成后,在目录 /usr/lib64/openvpn/plugin/lib/ 会出现 openvpn-auth 阅读全文
摘要:
``` 1.安装和配置openldap 1.1安装并启动服务 yum -y install openldap compat-openldap openldap-clients openldap-servers openldap-servers-sql openldap-devel # yum -y 阅读全文
摘要:
本文档基于CentOS7.6发行版最小化安装部署 1.安装依赖 ``` yum -y install conntrack socat ``` 2.下载kubekey ``` export KKZONE=cn curl -sfL https://get-kk.kubesphere.io | VERSI 阅读全文
摘要:
本环境基于CentOS7.6发行版最小化安装 IP hostname cpu/memory role 192.168.200.150 nginx 2C4G LB 192.168.200.151 master01-151 4C8G docker-ce/rke/helm/kubectl 192.168. 阅读全文
摘要:
方式1:以容器方式运行管理本容器nginx(nginxwebui镜像里已经整合了nginx) docker pull cym1102/nginxwebui:latest docker run -itd --restart=always --name=nginxwebui \ -v /home/ngi 阅读全文