一,1,查看dns本地解析:cat/etc/hosts指定的DNS:cat/etc/resolv.conf2,所有用户的登陆状态登陆成功:last登陆失败:lastb3,占用8080的进程ss-nutlp|grep":8080"4,当前路由表route-niproute5,网络端口流量iftopeth06,查看cpu占用最高的三个进程psaux|awk‘{print$3
分类:
其他好文 时间:
2020-09-18 02:31:05
阅读次数:
48
一、大数据 大数据的特性 (一)大体量,可从数百TB,PB,EB (二)多样性,大数据包括各种格式和形态的数据 (三)时效性,很多大数据需要在一定的时间限度下得到及时处理 (四)准确性,处理的结果一定要准备性 (五)大价值,大数据包含很多的深度的价值,大数据分析挖掘和利用将带来巨大的商业价值 二、H ...
分类:
其他好文 时间:
2020-09-18 02:20:12
阅读次数:
35
系统版本 centos 7.0 elk:6.7.2 jdk:1.8.0 1.elk结构 filebeat==>redis==>logstash==>es(群集)==>kibana 2.安装es群集 vim /etc/hosts 172.16.206.110 node-1 172.16.206.114 ...
分类:
其他好文 时间:
2020-09-18 00:56:30
阅读次数:
33
开发环境 编译器:VS2019 数据库:SqlServer 2019 运行环境 DotNet Core SDK(3.1.400) SqlServer迁移方式 依赖包 Microsoft.EntityFrameworkCore Microsoft.EntityFrameworkCore.SqlServ ...
分类:
数据库 时间:
2020-09-18 00:24:17
阅读次数:
38
input { stdin{ } elasticsearch { hosts => ["http://127.0.0.1:9200"] user => "admin" index => "*" password => "admin" #设置为true,将会提取ES文档的元数据信息,例如index、t ...
分类:
其他好文 时间:
2020-09-17 21:46:29
阅读次数:
33
vcsa6.7安装部署配置DNS版(vSphere vcsa 6.7)
分类:
移动开发 时间:
2020-09-17 17:46:57
阅读次数:
131
内置变量ansible_version获取到ansible的版本号ansibletest70-mdebug-a"msg={{ansible_version}}"内置变量hostvars操作当前主机时获取到其他主机中的信息name:"play1:Gatherfactsoftest71"hosts:test71remote_user:rootname:"
分类:
其他好文 时间:
2020-09-17 17:20:47
阅读次数:
79
通过item和with_items对重复操作进行循环执行示例:hosts:jack6_1remote_user:rootgather_facts:notasks:name:touchfilefile:path:"{{item}}"state:touchwith_items:"a""b""c"在jack6_1主机上创建三
分类:
其他好文 时间:
2020-09-17 17:20:16
阅读次数:
39
with_items遍历列表中每个元素,包括嵌套列表with_list将嵌套列表作为整体元素遍历with_together将多个列表中的子列表元素,一起输出,不成对则null补位示例:hosts:jack6_1remote_user:rootgather_facts:notasks:debug:msg:"{{item}}"with_items:[1,2,3][a,b]debug
分类:
其他好文 时间:
2020-09-17 17:19:57
阅读次数:
31
with_indexed_items示例:hosts:jack6_1remote_user:rootgather_facts:notasks:debug:msg:"{{item}}"with_indexed_items:[t1,t2][t3,[t4,t5]][t6]输出结果如下:[root@jack7-1work]#ansible-playbook--syntax-checki
分类:
其他好文 时间:
2020-09-17 17:19:41
阅读次数:
32