es转储工具elasticdump

elasticsearch 2022年09月25日 1,163次浏览

Graylog安装配置

1. 日志输入配置2. 索引滚动删除策略System / Indices / Default index set / Edit
日志 2022年09月25日 993次浏览

Jmeter分布式环境搭建

1. 压力机配置jmeter.propertiesserver_port=1099server.rmi.localport=1099server.rmi.ssl.disable=true启动:``2. 控制机配置remote_hosts=192.168.1.101:1099,192.168.1.10
2022年09月22日 848次浏览

iptables规则

# 禁用所有出去的网络iptables -P OUTPUT DROP# 允许部分出去的网络iptables -A OUTPUT -d 192.168.123.0/24 -j ACCEPT# 允许外网#iptables -P OUTPUT ACCEP
2022年09月13日 732次浏览

Springboot通过kafka收集日志

一、logback依赖 <dependency> <groupId>com.github.danielwegener</groupId> <artifactId>logback-kafka-ap
Kafka 2022年09月13日 1,034次浏览

WebSSH-开源web端ssh连接终端

2022年09月08日 889次浏览

K8s部署apollo配置中心configServices内网IP问题

说明K8s部署apollo配置中,springboot启动后,从容器IP上获取配置,因为是内部IP,所以外部无法连接springboot集成apollo配置,如下app: id: 100001apollo: cacheDir: /tmp/apollo/ cluster: default me
Java 2022年07月07日 1,200次浏览

docker运行Elasticsearch以及可视化工具

docker运行Elasticsearchdocker run -e ES_JAVA_OPTS="-Xms256m -Xmx256m" -e "discovery.type=single-node" -d -p 9200:9200 -p 9300:9300 -
2022年07月05日 1,015次浏览

Centos安装nfs服务

一、服务端安装配置1.安装并启动服务yum install -y nfs-utils rpcbindsystemctl start rpcbindsystemctl enable rpcbindsystemctl start nfs-serversystemctl enable nfs-server
2022年06月13日 786次浏览

Centos7安装MySQL5.7

1. 安装包下载下载网址:https://dev.mysql.com/downloads/mysql/5.7.htmlRed Hat Enterprise Linux 7 / Oracle Linux 7 (x86, 64-bit), RPM Bundlemysql-5.7.31-1.el7.x86
MySQL 2022年06月10日 1,228次浏览