摘要: date: 2019 9 18 author:yangxiaoyi time模块中时间表现的格式主要有三种: a、timestamp时间戳,时间戳表示的是从1970年1月1日00:00:00开始按秒计算的偏移量 b、struct_time时间元组,共有九个元素组。 c、format time 格式化 阅读全文
posted @ 2019-09-19 11:59 小翼君 阅读(116) 评论(0) 推荐(0) 编辑
摘要: date: 2019 9 18 author:yangxiaoyi [toc] python OS模块 、SYS模块 OS模块 os模块就是对操作系统进行操作,使用该模块必须先导入模块: import os getcwd() 获取当前工作目录(当前工作目录默认都是当前文件所在的文件夹) result 阅读全文
posted @ 2019-09-18 19:11 小翼君 阅读(202) 评论(0) 推荐(0) 编辑
摘要: date: 2019 9 5 author:yangxiaoyi [toc] 网络情况查询 1. 查看进程带宽占用情况 Nethogs 2. 网络流量监控 iptraf iftop 磁盘读取性能 1. 磁盘性能测试 IOZone、fio 2. 实时监控磁盘信息 IO IOTop (iotop) 进程 阅读全文
posted @ 2019-09-05 19:26 小翼君 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 安装Django时或者启动django项目时出现如下报错: django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is required (found 3.7.17) 或者这个报错 ImportError: dynami 阅读全文
posted @ 2019-09-02 14:07 小翼君 阅读(728) 评论(0) 推荐(0) 编辑
摘要: date: 2019 5 21 author:yangxiaoyi [toc] 安装Kubernetes单机版 系统: centos 7.6 docker: 1.13.1 yum安装etcd和kubernetes(会自动安装docker) yum install etcd kubernetes y 阅读全文
posted @ 2019-07-29 14:51 小翼君 阅读(655) 评论(0) 推荐(0) 编辑
摘要: date: 2019 6 21 author:yangxiaoyi [toc] 对称加密 openssl enc ciphername [ in filename] [ out filename] [ pass arg] [ e] [ d] [ a/ base64] [ A] [ k passwor 阅读全文
posted @ 2019-07-29 14:49 小翼君 阅读(228) 评论(0) 推荐(0) 编辑
摘要: date: 2019 4 24 tags: docker K8s author:yangxiaoyi [toc] lxc 描述和基本概念 Description : Linux Resource Containers provide process and resource isolation wi 阅读全文
posted @ 2019-05-16 18:32 小翼君 阅读(319) 评论(0) 推荐(0) 编辑
摘要: date: 2019 4 26 author:yangxiaoyi [toc] github账号看板使用方式 code code是存放代码的地方,比较容易理解,即仓库存放的内容 issues issues是放问题的地方,即给项目提问题,然后根据问题逐步解决,提交修改时,可以使用git commit 阅读全文
posted @ 2019-04-26 14:22 小翼君 阅读(372) 评论(0) 推荐(0) 编辑
摘要: date: 2019 4 24 author:yangxiaoyi [toc] rsync使用 1. rsync介绍 rsync全称remote sync,是一种更高效、可以本地或远程同步的命令,之所以高效是因为rsync会对需要同步的源和目的进度行对比,只同步有改变的部分,所以比scp命令更高效, 阅读全文
posted @ 2019-04-24 16:05 小翼君 阅读(332) 评论(0) 推荐(0) 编辑
摘要: title: 2019 4 23 tags: 新建 author:yangxiaoyi [toc] python编写规范 1. 整体目录 ├─bin ├─conf │ └─__pycache__ ├─core │ └─__pycache__ ├─db │ └─accounts └─log 2. bi 阅读全文
posted @ 2019-04-23 16:02 小翼君 阅读(157) 评论(0) 推荐(0) 编辑