log4j vulnerability es upgrade
edition
Version upgrade instructions: prevent risks caused by log4j vulnerabilities Unified Version Description: unify the version to prevent unnecessary accidents Version selection Description: elasticsearch: 7.16.2 logstash: 7.16.2 file beat: 7.16.2
Download instructions
Enter the official website es official website
Select the required ...
Posted by chintansshah on Fri, 11 Feb 2022 14:18:56 +0100
ElasticSeach detailed installation tutorial -- graphic introduction
catalogue
preparation in advance
Create user
Download the installation package of ElasticSeach. This case uses version 6.2.4
Modify the configuration item JVM options
Modify the configuration item elasticsearch yml
Resolve error reporting
Start Elasticsearch
1.3.1. Error 1: kernel too low
1.3.2. Error 2: insufficient file permissions
...
Posted by KoshNaranek on Fri, 11 Feb 2022 06:22:01 +0100
Elasticsearch Basics
Understand Elasticsearch
The principle of search is to establish a reverse index, also known as inverted index, which is to establish an index according to the keywords in the article content and correspond to the title of the article. For example, the ancient poetry index, which makes you think about the ancient poetry related to "Moonli ...
Posted by tommyinnn on Thu, 10 Feb 2022 23:27:31 +0100
Basic operations of Elasticsearch: index, document and search
1. Index
The first step to do before starting to index data in {elastic search is to create our main data container. The index here is similar to the database concept in SQL. It is a container for types (equivalent to tables in SQL) and documents (equivalent to records in SQL).
The act of storing data is called Indexing. In # elastic search, ...
Posted by Cleibe on Thu, 10 Feb 2022 17:36:08 +0100
ELK deployment - docker mode
1, elasticsearch deployment
1. Pull image
docker pull elasticsearch:7.12.1
2. Create host file path
mkdir -p /data/elasticsearch/config
mkdir -p /data/elasticsearch/data
mkdir -p /data/elasticsearch/logs
mkdir -p /data/elasticsearch/plugins
# Give permission (sometimes an error will be reported when the permission is insufficient)
chmod 77 ...
Posted by roseplant on Wed, 09 Feb 2022 12:30:06 +0100
Installation and configuration of elasticsearch and kibana in docker environment
Introduction to Elasticsearch
Elasticsearch is a distributed, high expansion, high real-time search and data analysis engine. It can easily make a large number of data have the ability of search, analysis and exploration
Applicable scenarios of Elasticsearch
abroad
Wikipedia, similar to Baidu Encyclopedia, full-text retrieval, highl ...
Posted by brandonr on Wed, 09 Feb 2022 04:13:36 +0100
ElasticSearch Windows single point and cluster configuration
Part4.1: ElasticSearch Windows
4.1 related concepts
4.1.1 single machine & cluster
When a single ElasticSearch server provides services, it often has the maximum load capacity. If it exceeds this threshold, the performance of the server will be greatly reduced or even unavailable. Therefore, in the production environment, it usually runs ...
Posted by silentweed on Tue, 08 Feb 2022 12:16:57 +0100
ElasticSearch Linux single point and cluster configuration
Part 4: ElasticSearch environment
4.1 related concepts
4.1.1 single machine & cluster
When a single ElasticSearch server provides services, it often has the maximum load capacity. If it exceeds this threshold, the performance of the server will be greatly reduced or even unavailable. Therefore, in the production environment, it usually r ...
Posted by ShaolinWood on Tue, 08 Feb 2022 04:33:54 +0100
KS1_S09_ElasticSearch-7.6X (library, table, record document)
2021-05-30_ElasticSearch-7.6.x (library, table, record document)
1, Topic introduction
Three tools of big data: ElasticSearch,Hadoop,HBase,Spark Data cleaning, ELK ELK technology, E: ElasticSearch, L: Logstash, K: Kibana Comparison of search methods: SQL, like% course%, if it is a large amount of data, it is very slow. Is there an index or ...
Posted by nsantos on Tue, 08 Feb 2022 00:07:55 +0100
Basic query operation of elasticsearch
Basic operation of es
1. Create es_db index, and set the default word segmentation method of the index to ik_max_word
PUT /es_db
{
"settings": {
"index": {
"analysis.analyzer.default.type": "ik_max_word"
}
}
}
2. Basic operations for index
GET /es_db
DELETE /es_db
3. Add document
PUT /es_db/_doc/1
{
"name": "Zh ...
Posted by sciencebear on Sun, 06 Feb 2022 22:29:28 +0100