上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: Download http://www.sublimetext.com/3 Markdown转浏览器显示 1. 简单版本 markdown html preview Ctrl + shift + M #激活浏览器显示 2. 有MD全格式版本 install package MarkdwnPrew C 阅读全文
posted @ 2021-04-21 19:43 AlexG 阅读(261) 评论(0) 推荐(0)
摘要: 1. 配置/etc/docker/daemon.json # cat /etc/docker/daemon.json { "registry-mirrors": ["https://0nth4654.mirror.aliyuncs.com"], "insecure-registries": ["ha 阅读全文
posted @ 2021-04-21 19:42 AlexG 阅读(28148) 评论(1) 推荐(0)
摘要: Harbor是一个用于存储和分发Docker镜像的企业级Registry服务器,由VMware开源,其通过添加一些企业必需的功能特性,例如安全、标识和管理等,扩展了开源 Docker Distribution。作为一个企业级私有Registry服务器,Harbor 提供了更好的性能和安全。提升用户使 阅读全文
posted @ 2021-04-21 19:35 AlexG 阅读(348) 评论(0) 推荐(0)
摘要: 系统可用性评价指标SLA对服务可用性提供了一定程度的明确指标,如果要达到99.5%的月服务可用性,意味着每月停服(计划内或计划外)时间不能超过21.6min A = MTBF / (MTBF+MTTR) 60x24x30 x (1-99.5%) = 21.6min 提升系统高用性的解决方案:建立冗余 阅读全文
posted @ 2021-04-18 17:48 AlexG 阅读(127) 评论(0) 推荐(0)
摘要: 网卡配置文件采用YAML格式,必须以 /etc/netplan/XXX.yaml 文件命名方式存放 可以每个网卡对应一个单独的配置文件,也可以将所有网卡都放在一个配置文件里 自动获取IP root@ubuntu1804:~# cat /etc/netplan/01-netcfg.yaml # Thi 阅读全文
posted @ 2021-04-18 17:01 AlexG 阅读(1674) 评论(0) 推荐(0)
摘要: 升级openssl版本 由于软件安装依赖需要或是安全需要,升级openssl版本 1. 下载源码 https://www.openssl.org/source/ https://www.openssl.org/source/snapshot/ wget https://www.openssl.org 阅读全文
posted @ 2021-04-15 19:29 AlexG 阅读(214) 评论(0) 推荐(0)
摘要: 源码安装nginx 1. For ubuntu:18.04 apt -y install build-essential libtool libpcre3 libpcre3-dev zlib1g-dev openssl net-tools curl wget wget -P /tmp http:// 阅读全文
posted @ 2021-04-11 10:08 AlexG 阅读(97) 评论(0) 推荐(0)
摘要: Best practices for writing Dockerfiles Dockerfile 文件说明 每一行以Dockerfile的指令开头,指令不区分大小写,惯例使用大写 使用 # 开始作为注释 每一行只支持一条指令,每条指令可以携带多个参数 指令按文件的顺序从上至下进行执行 每个指令的执 阅读全文
posted @ 2021-04-10 22:21 AlexG 阅读(60) 评论(0) 推荐(0)
摘要: shell字符截取 截取文本中以vm开头的单词 grep -o vm.* text | cut -d' ' -f1 截取活动主机 阅读全文
posted @ 2020-11-07 22:04 AlexG 阅读(126) 评论(0) 推荐(0)
摘要: mysql迁移后事件不执行 查看数据库是否开启事件支持 mysql> show variables like 'event_scheduler'; + + + | Variable_name | Value | + + + | event_scheduler | ON | + + + 或 selec 阅读全文
posted @ 2020-04-02 13:23 AlexG 阅读(313) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页