上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 35 下一页
摘要: ``` 负载均衡 upstream test_http{ server 172.28.12.31:8001 weight=1; server 172.28.12.33:8002 weight=1; } https-ssl证书 # HTTPS server server { listen 9090 ssl; server_name domain.name; ssl_certificate cert/ 阅读全文
posted @ 2020-02-20 10:02 kylingx 阅读(266) 评论(0) 推荐(0) 编辑
摘要: ```(1)证书列表 应用端私钥:/usr/local/apache/conf/cert/test.com.key 应用端证书:/usr/local/apache/conf/cert/test.com.crt 中间CA证书链:/usr/local/apache/conf/cert/test.com.chain.crt(2)将应用端证书和中间CA证书链打包合并成一个证书链 ... 阅读全文
posted @ 2020-02-19 14:08 kylingx 阅读(972) 评论(0) 推荐(1) 编辑
摘要: ``` 构建最小JDK Docker镜像 docker pull frolvlad/alpine-oraclejre8:slim 参考链接-解决乱码和时区问题 https://blog.csdn.net/zhuchuanwan/article/details/102957332 dockerfile如下: FROM jeanblanchard/alpine-glibc:latest RUN ln 阅读全文
posted @ 2020-02-19 08:03 kylingx 阅读(156) 评论(0) 推荐(0) 编辑
摘要: ``` 测试使用pfsense opnsense 相对来说opnsense使用较为友好,方便更新补丁及插件,自带IPS 使用虚拟机测试透明网桥失败,待分析 ``` 阅读全文
posted @ 2020-02-19 07:55 kylingx 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-02-14 14:31 kylingx 阅读(1638) 评论(0) 推荐(0) 编辑
摘要: ``` 支持windows集群 linux-master节点 只支持server2019 core(可使用core版,装好docker) Flannel windows-support Rancher HA 1.安装helm 2.创建证书 3.helm install rancher 企业k8s实践,分开部署 etcd 3 control plane 2 k8s访问 1.内部;clusterip通 阅读全文
posted @ 2020-02-09 00:14 kylingx 阅读(171) 评论(0) 推荐(0) 编辑
摘要: ```1.基本配置配置dns解析或者hosts关闭firewall selinuxdate -Rln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtimesudo echo 'LANG="en_US.UTF-8"' >> /etc/profile;source /etc/profile时间同步2.kernel调优https://docs.ranc... 阅读全文
posted @ 2020-02-07 22:57 kylingx 阅读(758) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-02-07 22:49 kylingx 阅读(162) 评论(0) 推荐(0) 编辑
摘要: ```touch /etc/docker/daemon.jsoncat > /etc/docker/daemon.json <<EOF{ "oom-score-adjust": -1000, "log-driver": "json-file", "log-opts": { "max-size": "100m", "max-file": "3" }, "ma... 阅读全文
posted @ 2020-02-07 09:57 kylingx 阅读(282) 评论(0) 推荐(0) 编辑
摘要: ```nginx-马哥1.IO复用模型同步/异步--关注消息通信机制同步synchronous,调用者等待返回消息异步asynchronous,被调用者主动通知调用者阻塞/非阻塞--关注调用者等待结果返回之前的状态阻塞blocking,调用者挂起非阻塞nonblocking,调用者不会挂起IO复用模型--多个连接共用一个等待机制select/poll2.Nginx静态资源的web服务器反向代理服务... 阅读全文
posted @ 2020-02-06 21:24 kylingx 阅读(132) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 35 下一页