摘要: MariaDB/Mysql的主从复制部署(Docker) 阅读全文
posted @ 2019-09-21 09:53 yes5144 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 基于gtid 主从复制 主从复制 阅读全文
posted @ 2019-09-21 09:52 yes5144 阅读(2086) 评论(0) 推荐(0) 编辑
摘要: Ansible是balabala ansible 安装 ansible常用模块 ansible变量详解 http://blog.51cto.com/breezey/1555530 http://docs.ansible.com/ansible/latest/index.html 阅读全文
posted @ 2019-09-18 07:18 yes5144 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 构建 Nginx WEB 服务器 Nginx 有内核和模块组成,其中,内核的设计非常微小和简洁,完成的工作也非常简单,仅仅通过查找配置文件将客户端请求映射到一个 location block(location 是 Nginx 配置中的一个指令,用于 URL 匹配),而在这个location 中配置的 阅读全文
posted @ 2019-09-18 07:02 yes5144 阅读(604) 评论(0) 推荐(0) 编辑
摘要: shell 编程 shell 通过提示你输入,向操作系统解释该输入。 shell 脚本中if还经常判断关于档案属性,比如判断是普通文件还是目录,判断文件是否有读写执行权限等。 使用if判断时,具体格式为: if [ e $filename ] ; then echo "${filename} 存在" 阅读全文
posted @ 2019-09-16 22:50 yes5144 阅读(133) 评论(0) 推荐(0) 编辑
摘要: ``` #!/usr/bin/env python2 # coding: utf8 import multiprocessing def foo(h,context): if h%2 == 0: print (h) else: context.append(h) if __name__ == "__main__": ## 设置共享list... 阅读全文
posted @ 2019-09-15 17:29 yes5144 阅读(3053) 评论(0) 推荐(0) 编辑
摘要: 参考链接1:https://blog.csdn.net/VictoriaW/article/details/75314737 参考链接2:https://blog.csdn.net/sheldonwong/article/details/86684761 Unicode和str Unicode st 阅读全文
posted @ 2019-09-15 17:26 yes5144 阅读(61018) 评论(0) 推荐(0) 编辑
摘要: 依赖包在golang.org ??? vscode go代码补全 阅读全文
posted @ 2019-09-15 17:24 yes5144 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 1,docker的安装 2,配置 docker 加速器 5,k8s基础命令 kubectl 管理应用程序生命周期 阅读全文
posted @ 2019-09-15 17:23 yes5144 阅读(239) 评论(0) 推荐(0) 编辑
摘要: Docker 基础命令 Docker 数据管理 数据卷:容器内数据直接映射到本地主机环境 数据库容器:使用特定容器维护数据卷 端口映射和容器互联 阅读全文
posted @ 2019-09-15 17:17 yes5144 阅读(131) 评论(0) 推荐(0) 编辑