docker installs ElasticSearch (version 6.x)
Install ElasticSearch
Pull the image and select version 6.5.0
$ docker pull elasticsearch:6.5.0
View mirroring
$ docker images
Start a container
$ docker run --name elasticsearch -d -e ES_JAVA_OPTS="-Xms512m -Xmx512m" -p 9200:9200 -p 9300:9300 elasticsearch:6.5.0
42d639a089348b393b0cc912141ef357b6565996c5c4863e363f8729da229d7d
Then visit GE ...
Posted by mrbaseball34 on Wed, 04 Dec 2019 08:46:25 +0100
winlogbeat - collect windows event log and enable default template and dashboard related configuration
winlogbeat is used to collect the system event log of windows;
Official website installation method: https://www.elastic.co/guide/en/beats/winlogbeat/current/winlogbeat-installation.html
Collect and write the elasticsearch configuration instance:
winlogbeat.event_logs:
- name: Security
ignore_older: 24h
event_id: 4624, 4625,4626,4627 ...
Posted by Seraskier on Mon, 02 Dec 2019 03:09:08 +0100
Talk about springboot jet autoconfigure
order
This paper focuses on springboot jet autoconfigure
JestProperties
spring-boot-autoconfigure-2.1.4.RELEASE-sources.jar!/org/springframework/boot/autoconfigure/elasticsearch/jest/JestProperties.java
@ConfigurationProperties(prefix = "spring.elasticsearch.jest")
public class JestProperties {
/**
* Comma-separated list of the Elasticsearc ...
Posted by TheKiller on Mon, 25 Nov 2019 16:19:44 +0100
Elasticsearch Series - A Simple Start
outline
This article mainly introduces the data format of Elasticsearch Document, compares the modeling of Java applications and relational databases, describes the basic cluster state query, the basic CRUD operation example of Document and the bulk batch processing example by writing Restful API on Kibana platform.
Document data format
The dat ...
Posted by andyg2 on Tue, 19 Nov 2019 01:55:25 +0100
SpringBoot From Beginning to Abandoning, Thesaurus - Autoconfiguration Principles
springboot auto-configuration principle
Attribute references that profiles can configure
Principle of automatic configuration
1. Load the main configuration class when springboot starts, and turn on auto-configuration @EnableAutoConfiguration
2. @EnableAutoConfiguration effect:
Import some components into the container using EnableAutoConfigu ...
Posted by xionfoo on Sun, 17 Nov 2019 02:52:48 +0100
Talk about ProcessProbe of Elasticsearch
order
This paper mainly studies ProcessProbe of elastic search
ProcessProbe
elasticsearch-7.0.1/server/src/main/java/org/elasticsearch/monitor/process/ProcessProbe.java
public class ProcessProbe {
private static final OperatingSystemMXBean osMxBean = ManagementFactory.getOperatingSystemMXBean();
private static final Method getMaxFileD ...
Posted by spramod on Wed, 06 Nov 2019 22:08:37 +0100
Talk about bootstrappcheck of Elasticsearch
order
This paper mainly studies bootstrap check of elastic search
BootstrapCheck
elasticsearch-7.0.1/server/src/main/java/org/elasticsearch/bootstrap/BootstrapCheck.java
public interface BootstrapCheck {
/**
* Encapsulate the result of a bootstrap check.
*/
final class BootstrapCheckResult {
private final String mess ...
Posted by paschim on Sun, 03 Nov 2019 18:11:36 +0100
Laravel full text searchelasticsearch
Using Elasticsearch search search engine, configure ik Chinese word segmentation, associate with Laravel model, and then realize the business logic of search. This is the end of the article. Use the Scout extension package of Laravel to complete the search function
To continue, Scout and Elastic enabled expansion packs have been installed and c ...
Posted by fpyontek on Sat, 02 Nov 2019 21:57:24 +0100
EFK tutorial - EFK Quick Start Guide
Through the deployment of elastic search (three nodes) + filebeat+kibana quick start EFK, and build the available demo environment test effect
Author: "the wolf of hair", welcome to reprint and contribute
Catalog
Application Experiment architecture ▪ EFK software installation ▪ elastics ...
Posted by McChicken on Sun, 27 Oct 2019 13:30:10 +0100
Elastic search cluster building
Environment and Software
centos7
elasticsearch 7.4.0
Because ES7 already has the JDK version of the required java built-in, the java installation is not introduced here.
ES7 installation mode uses RPM installation mode.
es node list
ip
Node name
192.168.1.100
es-node-master-01
192.168.1.101
es-node-master-02
192.168.1.102
es-node-mas ...
Posted by thomasgrant on Mon, 07 Oct 2019 04:14:21 +0200