Installation and Use of Nginx

Links to the original text: https://my.oschina.net/asparagus/blog/699224   I. Introduction Nginx("engine x") is a high performance HTTP and reverse proxy server, as well as ...

Posted by bob_the _builder on Tue, 17 Sep 2019 07:02:03 -0700

EFK follow-up of log system: monitor alarm monitoring

Previous articles EFK Follow-up of Logging System: fluent-bit Service Independence It completes fluent-bit acquisition, fluentd forwarding to kafka, and then to elastic search. Later, it is mentioned that the server logs should be synchronized to the fluent-bit environment. This can be accomplished by incremental synchronization through rsync, ...

Posted by dannynosleeves on Thu, 12 Sep 2019 02:38:38 -0700

gremlin_python encapsulation using add-delete and alter methods

Article Directory 1. Install Janusgraph 2. Connect gremlin 3. Encapsulation of methods for addition, deletion and alteration 4. Other methods of encapsulation 5. Acknowledgements 1. Install Janusgraph 1. Download the installation package Goin ...

Posted by tckephart on Thu, 05 Sep 2019 21:04:36 -0700

mall integrates Elastic search to realize commodity search

SpringBoot e-commerce project mall (20k+star) address: https://github.com/macrozheng/mall abstract This paper mainly explains the process of mall integrating Elastic search to realize the import, query, modification and deletion of commodity information in Elastic search. Introduction to Project Usage Framework Elasticsearch Elastic search is ...

Posted by evo4ever on Sat, 31 Aug 2019 23:08:58 -0700

Improvement of Kafka Connector in Version 2.3

In version 2.3 of Kafka, the Kafka connector has been greatly improved. First, when adding and deleting connectors, the way Kafka connectors handle tasks is modified. Previously, this action brought the whole system to a standstill, which has been criticized by the development and maintenance personnel. In addition, other problems frequently me ...

Posted by Mig on Fri, 30 Aug 2019 02:53:57 -0700

ELK-MACOS build deployment (including cluster)

brief introduction Elasticsearch Elastic search is a real-time distributed search and analysis engine that allows you to explore your data at a speed and scale you've never had before. It is used as a combination of full-text retrieval, structured search, analysis and the three functions. Support cluster configuration. Logstash/Filebea ...

Posted by poujman on Fri, 23 Aug 2019 22:14:23 -0700

Start elasticsearch,kibana,cerebro with docker

Uninstall older versions of docker Older versions of docker are called docker or docker-engine.If these are installed, uninstall them and their associated dependencies. sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ ...

Posted by jokerbla on Sun, 18 Aug 2019 20:19:33 -0700

docker log monitoring

Log Processing Mechanism Let's first look at the mechanism of docker log processing. When a container is started, it's actually a sub-process of docker daemon. docker daemon can get the standard output of the process in your container. When it gets the standard output, it will process it through its own LogDriver module, the way LogDriver s ...

Posted by raahatazim on Mon, 22 Jul 2019 08:56:43 -0700

Detailed explanation of SpringBoot automatic configuration

Principle of Automatic Configuration When spring boot loads the main configuration class, it turns on the automatic configuration function @Enable AutoConfiguration Role of Enable AutoConfiguration: Add some components to the container using AutoConfiguration Import Selector You can use the cont ...

Posted by zbee on Sun, 21 Jul 2019 04:01:45 -0700

Detailed Process of Building Elastic Search Distributed Cluster in Linux

System environment: CentOS 7.5 192.168.204.128 192.168.204.129 192.168.204.130 JDK:1.8 elasticsearch-7.1.1 1. Configure the JAVA environment, extract JDK 1.8 into / usr/local/jdk / directory, and add it to / etc/profile JAVA_HOME=/usr/local/jdk/jdk1.8 CLASSPATH=.:$JAVA_HOME/lib/tools.jar:$JAVA ...

Posted by neo926 on Sun, 21 Jul 2019 00:26:08 -0700