上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页
摘要: docker build --pull centos:v2 -f Dockerfile 官方解释: 它将提取任何基本映像的最新版本,而不是重复使用您已经在本地标记的内容 例如,基于移动标签(例如 ubuntu:bionic )的图像。上游会进行更改并定期重建它,但是您可能在本地拥有一个月的映像。码头 阅读全文
posted @ 2022-02-20 21:55 风风羊 阅读(2741) 评论(0) 推荐(0)
摘要: https://linux.cn/article-4099-1.html lsof 使用 网络相关 lsof -i -sTCP:LISTEN #找出正等候连接的端口 lsof-i :22 #查看22 端口情况 lsof -i@172.16.12.5 #使用@host来显示指定到指定主机的连接 lso 阅读全文
posted @ 2022-02-17 13:03 风风羊 阅读(111) 评论(0) 推荐(0)
摘要: tcpdump 使用 https://www.cnblogs.com/pyng/p/9698723.html https://www.cnblogs.com/hunttown/p/13631592.html 一、参数说明 (1)、类型的关键字 host:指明一台主机。如:host 10.1.110. 阅读全文
posted @ 2022-01-23 22:09 风风羊 阅读(101) 评论(0) 推荐(0)
摘要: 1.使用nginx 的stream 模块对 ftp做负载均衡,访问代理服务器报错: Response code:425 Response message:425 Security: Bad IP connecting. 解决方案如下: https://blog.csdn.net/qq_1512771 阅读全文
posted @ 2022-01-19 01:43 风风羊 阅读(75) 评论(0) 推荐(0)
摘要: es写入过程关键步骤: 数据写入index buffer缓冲和translog日志文件。index buffer(indices.memory.index_buffer_size) 大小默认是heap的10%,最小值为48M。 每隔一秒钟(index.refresh_interval),index 阅读全文
posted @ 2022-01-13 00:28 风风羊 阅读(398) 评论(0) 推荐(0)
摘要: 1. 查看哪些开启自启的服务: systemctl list-unit-files | grep enabled 这里的enabled就是开机启动,disabled就是不开机启动,static是服务的开机启动项不可被管理(对应的unit文件中没有定义[Install]区域,因此无法配置为开机启动服务 阅读全文
posted @ 2022-01-11 00:12 风风羊 阅读(263) 评论(0) 推荐(0)
摘要: filebeat 一般处理日志类型的数据,只是beats 产品系列的一种,logstash 和他的区别就是logstash处理的数据类型跟为全面。 下载filebeat,解压。部署到需要搜集日志数据机器上。 curl -L -O https://artifacts.elastic.co/downlo 阅读全文
posted @ 2022-01-10 23:16 风风羊 阅读(1722) 评论(0) 推荐(0)
摘要: 项目一:elasticsearch 迁移方案 elasticsearch 索引迁移 查看参考文档:https://www.elastic.co/guide/en/elasticsearch/reference/7.15/docs-reindex.html 添加需要迁移的es集群白名单到 目的 es配 阅读全文
posted @ 2022-01-10 22:24 风风羊 阅读(277) 评论(0) 推荐(0)
摘要: 学习地址:http://www.ruanyifeng.com/blog/2019/09/curl-reference.html ##curl命令意思就是 client url 的意思 -k参数指定跳过 SSL 检测。 $ curl -k https://www.example.com -L参数会让 阅读全文
posted @ 2022-01-09 17:06 风风羊 阅读(223) 评论(0) 推荐(0)
摘要: 搭建容器es集群 可参考的官网配置: version: '2.2' services: es01: image: docker.elastic.co/elasticsearch/elasticsearch:7.2.1 container_name: es01 environment: - node. 阅读全文
posted @ 2021-12-29 14:46 风风羊 阅读(657) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页