FasterDFS Configuration Installation
FasterDFS Basic Configuration Installation
Basic overview
FastDFS is an open source, lightweight, distributed file system that manages files, including file storage, file synchronization, file access (file upload, file download), etc. It solves the problems of mass storage and load balancing.It is especially suitable for online services with f ...
Posted by meediake on Mon, 30 Dec 2019 08:25:07 -0800
Full offline deployment of nginx
Some children's shoes participating in the actual project deployment know that it is a very painful thing to deploy Middleware in a completely offline process. Here is a record of the process of deploying an Nginx independently in Readhat.
1. Create nginx exclusive user
Users / user groups www/www
Create user group groupadd www
Cre ...
Posted by Zephyr_Pure on Sat, 28 Dec 2019 08:00:39 -0800
FasterDFS basic configuration installation
Basic overview
FastDFS is an open-source lightweight distributed file system, which manages files. Its functions include file storage, file synchronization, file access (file upload, file download), etc. It solves the problems of mass storage and load balancing. It is especially suitable for online services based on documents, such as album w ...
Posted by rickbond79 on Tue, 24 Dec 2019 04:24:37 -0800
Problems encountered in compiling and installing Apache,nginx,mysql,php, etc. for Raspberry Pie 3B
Raspberry Pie Compile Install LANMP
brief introduction
My raspberry pie here is 3 B Edition, CPU4 Kernel, memory 1 G,System I use is Ubuntu 19.10 Edition.The mirror uses Ali's mirror with the following source:
deb https://mirrors.aliyun.com/ubuntu-ports eoan main restricted
deb https://mirrors.aliyun.com/ubuntu-ports eoan-updates main rest ...
Posted by dotty on Mon, 16 Dec 2019 20:28:04 -0800
dockerfile making image
The process of making nginx image is divided into three steps1. Make dockerfile file2. Make nginx installation script of nginx.sh3. Make ngx-depolyment.yaml file
Here are the details
#mkdir /root/dockerfile
#cd /root/dockerfile
#touch Dockerfile
#mkdir nginx
//Making a dockerfile file
root@<cc_172.16.0.2|~/dockerfile/nginx>:#cat Docker ...
Posted by leon_nerd on Sun, 08 Dec 2019 11:32:00 -0800
13 strategies of Nginx - (VeryNginx)
What is VeryNginx
VeryNginx is developed based on Lua ﹣ Nginx ﹣ module (openretry), which implements advanced firewall, access statistics and other functions. The integration runs in Nginx, extends the function of Nginx itself, and provides a friendly Web interface.
How to install VeryNginx
Nginx compilation environment
yum -y install gcc gcc ...
Posted by FrankA on Fri, 06 Dec 2019 03:42:27 -0800
Data Compression and Archiving-zlib:GNU zlib Compression-Compression of Network Data
8.1.5 Compressed network data
The server in the next code list responds to a file name request with a stream compressor that writes a compressed version of the file to a socket that communicates with the client.
import zlib
import logging
import socketserver
import binascii
BLOCK_SIZE = 64
class ZlibRequestHandler(socketserver ...
Posted by coder9 on Tue, 03 Dec 2019 12:02:54 -0800
PHP programmers - common tools
Three links
There are often students in the community who ask, "is my PHP program blocked, is my PHP program open (not confident about the code I wrote), and is my PHP program problematic?" then they post their own programs, and enter the happy irrigation link. As time goes on, we have not formed a systematic solution. It is better to ...
Posted by blade_922 on Mon, 18 Nov 2019 22:53:22 -0800
[front end ramble] Git internals - Git objects
Reading guide This article is right Git Pro 10.2 Git internals - git objects The interpretation and transformation of the chapter mainly introduces two things: 1) using Git underlying command to complete the submission, 2) trying to use NodeJS to parse Git objects (Ruby is provided in the article).
###0x001 initialization Initialize a local war ...
Posted by fredted40x on Sun, 17 Nov 2019 23:14:17 -0800
Nginx connection timeout, process management optimization (load balancing)
Connection timeout for Nginx
In corporate websites, avoid wasting resources by occupying connections with the same customer for a long timeConnection timeout parameters can be set to control connection access time
Configure nginx
[root@localhost ~]# yum install pcre-devel zlib-devel gcc gcc-c++ -y ##Install Environment Package
[root@localh ...
Posted by gibs on Thu, 14 Nov 2019 11:33:25 -0800