摘要:
如何在 Linux 上用 IP转发使内部网络连接到互联网 阅读全文
摘要:
原文链接: python基础-文件读写'r' 和 'rb'区别 一、Python文件读写的几种模式: r,rb,w,wb 那么在读写文件时,有无b标识的的主要区别在哪里呢? 1、文件使用方式标识 'r':默认值,表示从文件读取数据。'w':表示要向文件写入数据,并截断以前的内容'a':表示要向文件写 阅读全文
摘要:
原文链接: https://www.jianshu.com/p/afb6277dbfd6 1.设置集群仅支持 Luminous(或者L之后的)客户端 具体命令: ceph osd set-require-min-compat-client luminous 或 ceph osd set-requir 阅读全文
摘要:
参考链接: mgr balancer模式探索及配置方法1 mgr balancer模式探索及配置方法2 1.ceph mgr module enable balancer [root@controller ~]# ceph mgr module enable balancer module 'bal 阅读全文
摘要:
原文链接:https://www.freebuf.com/sectool/191596.html 要分析Docker镜像,只需使用image tag/id/digest运行: dive <your-image-tag> 或者如果你想新建一个自己的image,那就直接使用命令: dive build 阅读全文
摘要:
为什么Docker镜像大小与仓库中不一致? 阅读全文
摘要:
原文链接:https://www.cnblogs.com/hushaojun/p/4533241.html >>> import os >>> os.path.exists('d:/assist') True >>> os.path.exists('d:/assist/getTeacherList. 阅读全文
摘要:
链接地址:https://ceph.io/rados/new-in-nautilus-pg-merging-and-autotuning/ [root@controller ~]# ceph osd pool autoscale-status Error ENOTSUP: Module 'pg_au 阅读全文
摘要:
参考链接:https://blog.csdn.net/u010317005/article/details/79242794 问题现象: 原因分析: 数据的不一致性(inconsistent)指对象的大小不正确、恢复结束后某副本出现了对象丢失的情况。数据的不一致性会导致清理失败(scrub erro 阅读全文
摘要:
md5是一种常见不可逆加密算法,使用简单,计算速度快,在很多场景下都会用到,比如:给用户上传的文件命名,数据库中保存的用户密码,下载文件后检验文件是否正确等。下面讲解在python中如何使用md5算法。 一、计算字符串的md5值 #!/usr/bin/env python # -*- coding: 阅读全文