Script Installation Apache and Working Mode

1. Introduction First, you need to understand the MPM (Multi-Processing Modules) that Apache uses. MPM is the core of Apache, which manages network connections and dispatches requests.There are three types of MPM in Apache (perfork, worker, event). Apache Version 2.4 New features: 1. MPM supports loading at runtime; however, to tur ...

Posted by Pnop on Mon, 08 Jun 2020 18:19:59 +0200

Source configuration PHP7.4

1, php Installation Preparation Environment System: CentOS Linux release 7.7.1908 PHP: php-7.4.6 2, Install PHP dependency package yum install gcc libxml2 libxml2-devel openssl openssl-devel bzip2 bzip2-devel libcurl libcurl-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel gmp gmp-devel libmcrypt libmcrypt-devel rea ...

Posted by Pyrite on Thu, 21 May 2020 17:55:26 +0200

Install Nginx under Centos

Our goal today is to set up a Nginx service on Centos to facilitate subsequent testing and learning.This is also the first step in learning about other Internet components.Next, I will describe the source code compilation process step by step, with some instructions. 1. Download the latest source code on the official website and unzip it The ...

Posted by bassguru on Sun, 17 May 2020 21:15:28 +0200

Application and summary of CRC

Application and summary of CRC At present, there are two kinds of Crc calculation methods: Crc32 and Crc32mpg2. CRC error detection technology of cyclic redundancy test can prove that the data is complete and error free (it is only very similar to think that it is error free). The methods to ensure reliable data transmission are as follows: ...

Posted by Abarak on Sat, 18 Apr 2020 02:11:05 +0200

Python script: Linux automatic installation of python2.7 or 3.6

Python script: Linux automatic installation of python2.7 or 3.6 Preface In the daily operation and maintenance process, in the deployment environment, it is often necessary to install or upgrade the python version. Here, a script is required for automatic installation and deployment. The implementation idea of this script is ...

Posted by Gulsaes on Fri, 27 Mar 2020 16:48:30 +0100

Initial installation experience of GaussDB 100 stand alone

The traditional database technology based on single machine has been unable to support the access processing of massive data. In this case, the database cluster gausdb 100, which supports the high expansion of the system and strong consistency of the sub database and sub table Sharding architecture, came into being. It is a distributed system ...

Posted by vinylblare on Wed, 11 Mar 2020 06:22:49 +0100

Ubuntu 16.04 install nginx tutorial use nginx+nginx-rtmp-module+ffmpeg to build streaming media server note use ffmpeg command to push existing files

brief introduction The function of RTMP Streamer in streaming media system can be shown in the following figure. First, the video data is sent to the streaming media Server (Server, such as FMS, Red5, Wowza, etc.) in the form of RTMP, and then the client (generally Flash Player) can watch the real-tim ...

Posted by lol on Sun, 02 Feb 2020 09:59:07 +0100

FastDFS Distributed File Storage

What is FastDFS? FastDFS is an open source, lightweight, distributed file system.He solves issues such as large data storage and load balancing.Especially suitable for online services with small and medium files (4KB < FileSize < 500MB), such as video, audio, picture websites, etc.FastDFS is an open source and lightweight distributed fi ...

Posted by Josh18657 on Tue, 24 Dec 2019 01:31:55 +0100

Error in pyenv installing python3.7.0 under Mac OS 10.14

Under Mac OS 10.14, when pyenv is used to install Python 3.7.0, an error is reported, as follows: xwszt@Linxyz:~$ pyenv install 3.7.0 python-build: use openssl from homebrew python-build: use readline from homebrew Downloading Python-3.7.0.tar.xz... -> https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tar.xz Installing Python-3.7.0. ...

Posted by wscreate on Mon, 16 Dec 2019 17:27:06 +0100

CMake install grpc to generate gRPCTargets.cmake file

The following are the installation statements: cd grpc_folder git submodule update --init cmake .. make -j 4 sudo make install However, when writing a program that depends on gRPC, it is found that the CMake file of gRPC cannot be called. The error prompt is as follows: include could not find load file: /usr/local/lib/cmake/grpc/gRPCTarg ...

Posted by Vertical3 on Wed, 04 Dec 2019 09:41:09 +0100