上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 31 下一页
摘要: 1. Django CBV下的request # 路由层 from app import views urlpatterns = [ url(r'^cbv/', views.CBVTest.as_view()), ] # 视图层 from django.shortcuts import render 阅读全文
posted @ 2020-04-10 12:43 流年中渲染了微笑 阅读(512) 评论(0) 推荐(0)
摘要: word文件分为两种类型 一种是 以doc结尾的 一种是以 docx结尾的 一 以docx结尾的word文件 首先是安装模块 pip install python-docx 使用 from docx import Document path = r"E:\docx.docx" document = 阅读全文
posted @ 2020-04-08 21:04 流年中渲染了微笑 阅读(9780) 评论(0) 推荐(0)
摘要: vi /etc/sysconfig/network-scripts/ifcfg-ens33 TYPE=Ethernet PROXY_METHOD=none BROWSER_ONLY=no BOOTPROTO=dhcp DEFROUTE=yes IPV4_FAILURE_FATAL=no IPV6IN 阅读全文
posted @ 2020-04-06 22:27 流年中渲染了微笑 阅读(129) 评论(0) 推荐(0)
摘要: #解决中文乱码 在serveice端 yum -y install wqy-microhei-fonts \cp /usr/share/fonts/wqy-microhei/wqy-microhei.ttc /usr/share/fonts/dejavu/DejaVuSans.ttf 阅读全文
posted @ 2020-04-06 18:51 流年中渲染了微笑 阅读(124) 评论(0) 推荐(0)
摘要: 按图操作 刷新变绿色就是监控上了 新添加一台主机 查看数据 但是不够清晰 阅读全文
posted @ 2020-04-06 18:45 流年中渲染了微笑 阅读(142) 评论(0) 推荐(0)
摘要: 安装客户端 #安装zabbix源、aliyu nYUM源 curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo curl -o /etc/yum.repos.d/epel.repo 阅读全文
posted @ 2020-04-06 17:58 流年中渲染了微笑 阅读(143) 评论(0) 推荐(0)
摘要: 一 安装zabbix 1.1. 环境检查 [root@localhost ~]# cat /etc/redhat-release CentOS Linux release 7.4.1708 (Core) [root@localhost ~]# uname -r 3.10.0-693.el7.x86_ 阅读全文
posted @ 2020-04-06 16:20 流年中渲染了微笑 阅读(184) 评论(0) 推荐(0)
摘要: """ 基于Python实现对git仓库进行操作,使用前需要安装模块:gitpython pip3 install gitpython """ # ############## 1. clone下载代码 ############## """ import os from git.repo impor 阅读全文
posted @ 2020-04-03 14:41 流年中渲染了微笑 阅读(878) 评论(0) 推荐(0)
摘要: match查询 PUT zhifou/doc/1 { "name":"顾老二", "age":30, "from": "gu", "desc": "皮肤黑、武器长、性格直", "tags": ["黑", "长", "直"] } PUT zhifou/doc/2 { "name":"大娘子", "ag 阅读全文
posted @ 2020-04-01 15:45 流年中渲染了微笑 阅读(410) 评论(0) 推荐(0)
摘要: elasticsearch提供两种查询方式 查询字符串(query string),简单查询,就像是像传递URL参数一样去传递查询语句,被称为简单搜索或查询字符串(query string)搜索。 另外一种是通过DSL语句来进行查询,被称为DSL查询(Query DSL),DSL是Elasticse 阅读全文
posted @ 2020-04-01 15:12 流年中渲染了微笑 阅读(403) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 31 下一页