kubernetes-1.11.0 cluster deployment node cluster (3)

kubernetes-1.11.0 cluster deployment node cluster (3) Node configuration The components to be deployed in a single node include docker, calico, kubelet and Kube proxy. Node node makes master HA based on nginx load API Start a nginx on each node, and each nginx reversely proxy all API servers; Kubelet Kube proxy on node co ...

Posted by abushahin on Wed, 01 Jan 2020 00:02:17 -0800

nginx deployment and installation

1. When learning ngnix, there is no need to install it. In fact, the installation is very simple. A shell script can do it. Please refer to the following Use the root user to execute the nginx-install.sh script, which is as follows: #!/bin/bash set -o nounset basedir=$(cd "$(dirname "$0")"; pwd) # Set user name and password sys_user=hadoop sy ...

Posted by bk6662 on Mon, 30 Dec 2019 12:26:23 -0800

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

Three ways to implement 404 pages in Nginx

A website project can't avoid 404 pages. When using Nginx as a Web server, there are the following centralized configurations: First: Nginx's own error page Nginx accesses a static html page. When the page does not exist, nginx throws 404, so how to return it to the client 404? Look at the following configuration. In this ca ...

Posted by pentinat on Sat, 28 Dec 2019 13:23:23 -0800

Should the program write log files unlocked

log To make my thoughts clearer, I'll call the log below.Because the word log has two meanings, see Baidu Encyclopedia Explanation perhaps Wikipedia Explanation. diary Another way of saying this.The word "journal" itself means "record". A journal is a daily record (usually related to the author). Server Log (server log) ...

Posted by cetaces on Sat, 28 Dec 2019 12:46:51 -0800

kubernetes Series Tutorial kubernetes Resource Management and Quality of Service

Write before In the last article kubernetes Series Tutorials (5) Deep understanding of core concepts pod yaml's first introduction to kubernetes is an important concept of pod, followed by introduction kubernetes series tutorials resource management of pod and Quality of service of pod. 1. Pod Resource Management 1.1 resource definition Contai ...

Posted by ddragas on Sat, 28 Dec 2019 11:19:33 -0800

Nginx Service Optimization ---- (Hide Version + Cache + Modify Users and Groups + Log Split + Process Timeout)

[TOC] Article Directory 1. Configure Nginx Hidden Version Number 1.1. Modify Profile Method 1.2. Modify Source Code Method 2. Modify Nginx Users and Groups 2.1. Modify the profile to specify users and groups 3. Configure Nginx Web Cache Time IV. Configure Log Splitting 5. Connection timeout The installation of nginx has been configured in adva ...

Posted by stringfield on Sat, 28 Dec 2019 10:06:19 -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

Deploy Docker swarm cluster

1, Introduction to Docker swarm Docker swarm and docker-compose In the same way, it is the official docker container choreographer. But the difference is that Docker Compose is a tool to create multiple containers on a single server or host, while Docker Swarm can create container cluster services on multiple servers or hosts. Obviously, Docke ...

Posted by FusionComputers on Fri, 27 Dec 2019 05:39:47 -0800

Deploy Nginx+Apache dynamic static separation

The introduction of Nginx dynamic and static separationNginx has a strong static processing ability, but its dynamic processing ability is not enough. Therefore, the dynamic static separation technology is often used in enterprisesDynamic and static separation for PHP Static page to Nginx Dynamic page to PHP-FPM module or Apache processingIn ...

Posted by argoSquirrel on Fri, 27 Dec 2019 03:21:06 -0800