Docker compose ELK+Filebeat

Docker compose ELK+Filebeat https://blog.csdn.net/u013068184/article/details/107433859 ELK+Filebeat is mainly used in the log system and mainly includes four components: Elasticsearch, logstack, Kibana and Filebeat, also collectively referred to as Elastic Stack. A general architecture process: The installation process of docker compose (stan ...

Added by tomas.srna on Wed, 02 Feb 2022 21:15:49 +0200

Compile and install Apache, mysqld and PHP

Overview of LAMP architecture Introduction to LAMP LAMP is the acronym of Linux operating system + Apache Web server + MySQL database server + PHP (or Perl, Python) web programming language. They are all independent programs, but together they can be used to build open source software for dynamic websites or servers. Function of each com ...

Added by Slashscape on Wed, 02 Feb 2022 20:41:41 +0200

linux Process / thread / CO process series 2: system commands of process / thread

preface Recently, when learning autopilot system, I met the concept of co operation. The process and thread have been lost, and there is another collaborative process. I believe many friends have the same idea as the author. After reading a lot of materials, they decided to write a summary to summarize the connections and differences bet ...

Added by freebie on Wed, 02 Feb 2022 19:35:26 +0200

File directory class of Linux utility instruction

File directory class pwd instruction pwd (Function Description: displays the absolute path of the current working directory) Case: displays the absolute path of the current working directory # pwd ls instruction ls [ Options] [Directory or file] -a : Displays all files and directories in the current directory, including hidden ones. ...

Added by danesc on Wed, 02 Feb 2022 15:52:58 +0200

Installation and optimization of Nginx

1, Nginx website service A high-performance, lightweight Web service software High stability Low system resource consumption High processing capacity for HTTP concurrent connections A single physical server can support 30000 ~ 50000 concurrent requests ① Installing nginx lightweight web services 1. Turn off the firewall and the software ...

Added by VK4KBG on Wed, 02 Feb 2022 13:39:35 +0200

Detailed explanation and examples of function variable scope, variable type, common variable, global variable, environment variable and local variable in shell

Overview of function variables Variable scope: the scope of Shell variables is the effective scope of Shell variables Variable type Common variables are also called global variables. The scope of common variables is the current shell script program file, including the functions in the script. Environment variables: the current shell ...

Added by Illusionist on Wed, 02 Feb 2022 12:15:01 +0200

2021-06-01 Ubuntu 1604 Installation ROS+ROS Initialization Failure Solution

#This article is a compilation of ROS installation on the network and solutions to ROS initialization error problems. It is only used as a personal learning record# 1. ROS Version Selection ROS currently only supports installation and deployment on Linux systems, and its preferred development platform is Ubuntu. Today, ROS has been update ...

Added by mp04 on Wed, 02 Feb 2022 10:33:44 +0200

How to optimize Apache pages

Web page compression 1. Check whether mod is installed_ Deflate module apachectl -t -D DUMP_MODULES| grep "deflate" 2. If mod is not installed_ Deflate module, recompile and install Apache, add mod_deflate module systemctl stop httpd.service cd /usr/local/httpd/conf mv httpd.conf httpdno.conf.bak yum -y install gcc gcc-c++ pcre pcre-de ...

Added by maqmus on Wed, 02 Feb 2022 10:22:25 +0200

lanproxy build intranet penetration

1. What is intranet penetration? Intranet penetration is also called intranet mapping, or "NAT penetration"In a word, let the external network access your internal network; Regard your intranet (host) as a server so that the external network can access itThe principle diagram is as follows: Use lanproxy to build intranet penetr ...

Added by dannau on Wed, 02 Feb 2022 09:55:57 +0200

Caffe studies unbutun18 Configure Caffe OCR under 04

Caffe learning (8) unbutun18 Configure Caffe OCR under 04 preface Whereas https://github.com/senlinuc/caffe_ocr There is no linux version. Here is a record of how to convert the Windows version to the linux version Preparation stage https://github.com/senlinuc/caffe_ocr https://github.com/BVLC/caffe Installing caffe Here is mainly to ...

Added by tomsasse on Wed, 02 Feb 2022 08:32:52 +0200