摘要: 1、知识点回顾 1.1、MTV模型 model :模型,和数据库相关的 template :模板,存放html文件,模板语法(目的是将变量如何巧妙的嵌入到HTML页面中)。 views :视图函数 urls :url路径与视图函数的映射关系,,可以不是一一对应的。 1.2、相关的一些命令 创建一个D 阅读全文
posted @ 2019-07-09 14:48 石Stone头 阅读(499) 评论(0) 推荐(0) 编辑
摘要: Django2.2.x框架:基础篇 1、MTV模型 1.1、Django的MTV分别代表: Model(模型) :和数据库相关的,负责业务对象与数据库的对象(ORM) Template(模板) :放所有的html文件,模板语法:目的是将白变量(数据库的内容)如何巧妙的嵌入到html页面中 View( 阅读全文
posted @ 2019-07-08 21:13 石Stone头 阅读(1140) 评论(0) 推荐(0) 编辑
摘要: 1、如果配置了delete.topic.enable=true 适合以下操作 通过命令删除:./kafka topics.sh zookeeper 127.0.0.1:2181 delete topic apply_test 通过zookeeper client 删除掉broker下的topic, 阅读全文
posted @ 2019-05-24 12:08 石Stone头 阅读(1099) 评论(0) 推荐(0) 编辑
摘要: 1、修改配置生效 hadoop dfsadmin refreshNodes 2、查看配置 hdfs:http://172.16.10.10:50070/conf yarn:http://172.16.10.10:8088/conf 阅读全文
posted @ 2019-05-09 20:30 石Stone头 阅读(1395) 评论(0) 推荐(0) 编辑
摘要: filebeat client/metadata found some partitions to be leaderless 环境:filebeat + kafka + logstash + kibana + es 报错的原因:filebeat.yml 文件的out.kafka 配置变更导致。 解 阅读全文
posted @ 2019-03-10 15:01 石Stone头 阅读(1832) 评论(0) 推荐(0) 编辑
摘要: git pull 报错:fatal: Exiting because of unfinished merge. 报错内容: error: You have not concluded your merge (MERGE_HEAD exists). hint: Please, commit your 阅读全文
posted @ 2019-02-21 16:25 石Stone头 阅读(15104) 评论(0) 推荐(1) 编辑
摘要: 依赖:node环境。 elk安装elasticsearch head步骤 npm install g grunt cli git clone git://github.com/mobz/elasticsearch head.git cd elasticsearch head npm install 阅读全文
posted @ 2019-01-22 11:55 石Stone头 阅读(480) 评论(0) 推荐(0) 编辑
摘要: 注意: es集群修改elasticsearch.yml配置添加 http.cors.allow headers: Authorization,X Requested With,Content Length,Content Type 重启集群 阅读全文
posted @ 2019-01-22 11:53 石Stone头 阅读(810) 评论(0) 推荐(0) 编辑
摘要: 操作步骤: pip2.7 install w3lib python2.7 from w3lib.html import remove_tags a="""["application_1514348141878_2816407","aaaaaa","com.aaa.sem.LandPageCount2 阅读全文
posted @ 2018-10-16 20:42 石Stone头 阅读(2520) 评论(0) 推荐(0) 编辑
摘要: 问题描述 ELK6.2.3日志系统,访问kibana界面出现该提示,无法访问后端es数据,但是es集群是健康状态 问题原因 kibana默认每2.5秒对es集群进行健康检查,如果短时间内没有数据返回,出现该报错 相关配置参数:elasticsearch.healthCheck.delay 代码如下: 阅读全文
posted @ 2018-07-20 20:15 石Stone头 阅读(1847) 评论(0) 推荐(0) 编辑