Local construction of Elastic Stack (Elasticsearch + kibana + Logstash + FileBeat + APM) 7.17.14 version

Local construction of Elastic Stack (Elasticsearch + kibana + Logstash + FileBeat + APM) 7.17.14 version 1. Foreword: 1. This article is a non-cluster environment configuration description for the installation of Elastic Stack version 7.17.14. If you are using the 8.x version of the Elastic Stack product, this article does not apply. 2. The example […]

Download and install Elasticsearch, download, install and use IK word segmenter and Kibana, and demonstrate how to use elasticsearch

First, give the network disk link of the version you use: your own version 7.17.14 Link: https://pan.baidu.com/s/1FSlI9jNf1KRP-OmZlCkEZw Extraction code: 1234 In general, Elastic Search (ES) is not used alone, such as the mainstream technology combination ELK (Elasticsearch + Logstash + Kibana) 1. Elasticsearch download Before downloading, first look at the corresponding relationship with the JDK […]

docker-compose quickly deploys elasticsearch and kibana

Article directory Preface 1. Preparation 1.1 Create directories and configuration files 2. Write docker-compose file 3. Start and check the status 4. Effect display 5. Docker common instructions 5.1 Container life cycle management: 5.2 Container operations: 5.3 Image management: 5.4 Docker network: 5.5 Docker components: 5.6 Container logs and statistics: other: Summarize Foreword Containerization technology […]

Install elasticsearch, kibana

Hello everyone, I am Su Lin. Today I will install es and kibana. Deploy single point es Create a network Because we also need to deploy the kibana container, we need to interconnect the es and kibana containers. Here first create a network: docker network create es-net Mirror We can use the docker command to […]

docker-compose installs ES7.14 and Kibana7.14 (with account and password)

1. docker-compose installs ES7.14.0 and kibana7.14.0 1. Download the image 1.1, ES mirror docker pull elasticsearch:7.14.0 1.2, kibana mirror docker pull kibana:7.14.0 2. Install ES and kibana with docker-compose 2.1. Create configuration file directories and files #Create a directory mkdir -p /home/es-kibana/config mkdir -p /home/es-kibana/data mkdir -p /home/es-kibana/plugins #Authorize the mounting directory chmod 777 -R […]

Detailed tutorial on Springboot integrated docker deployment of ELK (ElasticSearch, Kibana, LogStash)

1. Server information 1. System: centos7.9 2. Configuration: 2 cores, 8GB memory, 80GB storage 2. Install docker 1. Update data source yum update 2. Set the installed data source (Alibaba) yum-config-manager –add-repo https://download.docker.com/linux/centos/docker-ce.repo 3. Install Docker client yum install docker-ce 4. Check Docker version docker -v 5. Start Docker systemctl start docker 3. Centos7.9 installation […]

Docker installs ES7.14 and Kibana7.14 (no account password)

1. Docker installation ES7.14.0 1. Download the image docker pull elasticsearch:7.14.0 2. Docker installation 7.14.0 mkdir -p /usr/local/elasticsearch/config chmod 777 -R /usr/local/elasticsearch/ echo “cluster.name: “docker-cluster” >> /usr/local/elasticsearch/config/elasticsearch.yml echo “network.host: 0.0.0.0” >> /usr/local/elasticsearch/config/elasticsearch.yml echo “discovery.zen.minimum_master_nodes: 1” >> /usr/local/elasticsearch/config/elasticsearch.yml echo “discovery.type: single-node” >> /usr/local/elasticsearch/config/elasticsearch.yml docker run –name elasticsearch -p 9200:9200 -p 9300:9300 -e “discovery.type=single-node” -e ES_JAVA_OPTS=”-Xms64m -Xmx128m” […]

Kibana development tool installation

Release Notes Name Version Remarks kibana kibana-7.7.1-linux-x86_64.tar.gz Installation configuration tar -zxvf kibana-7.7.1-linux-x86_64.tar.gz -C /usr/local/ cd /usr/local/ mv kibana-7.7.1-linux-x86_64/ kibana-7.7.1/ # Edit the configuration file and add vim /usr/local/kibana-7.7.1/config/kibana.yml at the end to authorize chown -R elasticsearch. /usr/local/kibana-7.7.1/ Configuration file modification # Kibana is served by a back end server. This setting specifies the port to […]

Installation in window11 environment: Elasticsearch, Logstash and Kibana

Installation in window11 environment: Elasticsearch, Logstash and Kibana [Note] Elasticsearch depends on JDK, so you need to ensure that jdk is installed on the machine in advance; this tutorial is to install Elasticsearch 6.3.3 version (the logstash and kibana versions are the same), which requires jdk1.8 Baidu network disk address: jdk1.8: Link: https://pan.baidu.com/s/1VsmchceVPo9PDE3zmP514g?pwd=1234 Extraction code: […]

Use docker to deploy es and kibana under Linux and mac

es version: 8.5.0 kibana version: 8.5.0 docker: The new version is fine (must support docker compose) Background: When learning es, I used docker to deploy es on a Linux server (I originally wanted to deploy both es and kibana on the server, but due to server performance limitations, I could only put kibana on my […]