摘要: 一、迭代器是访问集合元素的一种方式。迭代器对象从集合的第一个元素开始访问,直到所有的元素被访问万结束。迭代器只能 往前不会后退。另外,迭代器的一大优点是不要求事先准备好整个迭代过程中所有的元素。迭代器仅仅在迭代到某个元素时才计算该元素,而在这之前或之后,元素可以不存在或者被销毁。这个特点使得它特别适 阅读全文
posted @ 2018-06-19 21:37 Presley 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 一、流程图如下 二、用户通过kubectl提交需要运行的docker container(pod)。 三、api server把请求存储在etcd里面。 四、scheduler(调度)扫描,分配机器。 五、kubelet(小管)找到自己需要跑的container,在本机上运行。 六、用户提交RC描述 阅读全文
posted @ 2018-06-19 17:27 Presley 阅读(486) 评论(0) 推荐(0) 编辑
摘要: 转载自:https://www.jianshu.com/p/63ffc2214788 阅读全文
posted @ 2018-06-19 15:50 Presley 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 转载自:https://www.cnblogs.com/leffss/p/8512773.html 一.安装前准备 安装采用二进制包方式,软件包5.7.19版本下载地址:https://dev.mysql.com/downloads/mysql/ 选择MYSQL Community Server版本 阅读全文
posted @ 2018-06-19 14:39 Presley 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/leffss/p/7832047.html 阅读全文
posted @ 2018-06-19 14:34 Presley 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/leffss/p/7832100.html 阅读全文
posted @ 2018-06-19 12:03 Presley 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 转载自:https://www.cnblogs.com/leffss/p/9116504.html 要想知道每个数据库的大小的话,步骤如下: 1、进入information_schema 数据库(存放了数据库的信息) use information_schema; 2、查询所有数据库的大小: sel 阅读全文
posted @ 2018-06-19 11:55 Presley 阅读(679) 评论(0) 推荐(0) 编辑
摘要: 转载自:https://www.cnblogs.com/leffss/p/7845303.html 阅读全文
posted @ 2018-06-19 11:52 Presley 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/vijayfly/p/6234575.html shell将标准错误输出重定向到 其他地方 经常可以在一些脚本,尤其是在crontab调用时发现如下形式的命令调用: /tmp/test.sh > /tmp/test.log 2>&1 前半部分/t 阅读全文
posted @ 2018-06-19 11:25 Presley 阅读(2518) 评论(0) 推荐(1) 编辑
摘要: 转自:https://www.cnblogs.com/aaronLinux/p/8340281.html 阅读全文
posted @ 2018-06-19 11:05 Presley 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 一、获取对应路径下文件的名字 >>> os.path.basename("/etc/sysconfig/selinux") 'selinux' >>> os.path.basename("/usr/local/python3/bin/python3") 'python3' 阅读全文
posted @ 2018-06-19 11:04 Presley 阅读(7488) 评论(0) 推荐(0) 编辑