Installation and deployment of Nginx

1: Install toolkits wget, vim, and gcc yum install -y wget yum install -y vim-enhanced yum install -y make cmake gcc gcc-c++ 2: Download nginx installation package wget http://nginx.org/download/nginx-1.6.2.tar.gz 3: Install dependency package yum install -y pcre pcre-devel yum install -y zlib zlib-devel yum i ...

Posted by phpchamps on Wed, 01 Apr 2020 10:22:31 -0700

Under Ubuntu 14.04, install redis-3.2.0 and start up

Download it on the official website Redis -3.2.0.tar.gz, put redis-3.2.0.tar.gz in the / opt directory Unzip redis-3.2.0.tar.gz xiaoyao@xiaoyao-virtual-machine:/opt$ sudo tar -zxvf redis-3.2.0.tar.gz Compile redis xiaoyao@xiaoyao-virtual-machine:/opt$ cd redis-3.2.0/ xiaoyao@xiaoyao-virtual-machine:/opt/redis-3.2.0$ sudo m ...

Posted by hoopplaya4 on Tue, 31 Mar 2020 13:28:41 -0700

Compile and install vim8 under centos7, and support python3

1. Install python3 vim7.4 and python2.7 are installed by default in CentOS 7. Now we want to install vim8 and make it support python3. First of all, you need to install python3 in the system. For specific installation steps, please refer to my previous blog: https://blog.csdn.net/geerniya/article/details/79263846 2. Compile ...

Posted by ltd on Tue, 31 Mar 2020 05:04:47 -0700

Configure expiration time for static elements

Configure static element expiration time The browser will cache static files (pictures, CSS, JS) in the computer by default when visiting the website. So the next time you visit, you don't have to download remotely. How long is the cache? The browser will have its own mechanism to clear the cache. Or it can be set on the remote ...

Posted by jamiel on Mon, 30 Mar 2020 23:46:01 -0700

Install traefik ingress in Kubernetes

#Download Configuration List wget https://github.com/containous/traefik/tree/v1.7/examples/k8s #There are three files in the link that start with traefik-and you can see their names, of which traefik-deployment.yaml is not used here # traefik-deployment.yaml is either traefik-ds.yaml or traefik-ds.yaml, which is recommended because the conf ...

Posted by mj_23 on Sun, 29 Mar 2020 09:50:42 -0700

redis master-slave configuration (one master-many slave)

Introduction of Master and Subordinate redis installation 1. Master-Subordinate-Usage Like MySQL, redis support master-slave synchronization, as well as a master-slave and multilevel slave structure. The primary-slave architecture is designed for purely redundant backups, and for improved read perf ...

Posted by SpaceLincoln on Sat, 28 Mar 2020 10:36:48 -0700

Formal Learning linux-16

1. E-mail system Mail User Agent (MUA): A server that receives and receives mail for users; Mail Delivery Agent (MDA): Mail can be saved for users when they are offline; Mail Transfer Agent (MTA): Forward and process messages between different e-mail service providers. In deploying an e-mail system, the outgoing service is based on the post ...

Posted by shure2 on Fri, 27 Mar 2020 19:59:31 -0700

[CV] license plate recognition and installation and a method of license plate correction

1. License plate recognition project installation 2. Method of license plate correction 1. License plate recognition project installation https://blog.csdn.net/lilai619/article/details/796951091.git clone's latest documents cd /opt/deploy git clone https://github.com/sergiomsilva/alpr-uncons ...

Posted by evilMind on Fri, 20 Mar 2020 07:38:18 -0700

Some small operations of gitlab

1, Install gitlab Reference blog Gitlab installation and application of continuous integration Install gitlab, and perform the basic operation of the third and remote library 2, Mail verification registration Email reminders can be used to register users and need to be verified by email. They will also be reminded when gitlab uploads code or d ...

Posted by Megalink on Thu, 19 Mar 2020 10:53:41 -0700

Prometheusf installation and use

Reference resources https://blog.51cto.com/14157628/2473866?source=dra Before deploying Prometheus, due to the low configuration of the experimental environment, the original dashboard and Scope were deleted! Before you actually deploy Prometheus, you should understand the relationships and functions among the components of Prometheus: 1) ...

Posted by [JayZ] on Wed, 18 Mar 2020 08:22:06 -0700