Centos deploy KVM virtualization platform (can follow)

I. KVM overview KVM is the abbreviation of Kernel Virtual Machine. At present, Linux distribution must run KVM in 64 bit system environment, and the hardware needs to support VT technology. 1. Case pre knowledge points KVM has been directly integrated into Linux kernel since Linux version 2.6.20. It relies on CPU virtualization instruction set ...

Posted by futurewii on Thu, 21 Nov 2019 22:38:20 -0800

Gradle Core: Getting Started with Gradle, Life Cycle Exploration, Basic Scripting

After learning Groovy's core grammar, I'll move on to Gradle. Gradle is a system building tool whose DSL is based on Groovy. Most of its functionality is achieved through plug-ins. If built-in plug-ins do not meet your needs, you can customize your own plug-ins. Gradle Getting Started and Exploring Life Cycles We can Reference Documents Get sta ...

Posted by Justin L H on Thu, 21 Nov 2019 18:28:09 -0800

Deploy a complete set of DNS detailed process within the enterprise

  1) environmental description   1. A total of 7 hosts are required, and their roles are as follows: A. 192.168.36.6(OS6): test B. 192.168.36.7(OS7): localdns C. 192.168.36.17(OS7): rootdns D. 192.168.36.27(OS7): comdns E. 192.168.36.37(OS7): master F. 192.168.36.47(OS7): slave G. 192.168.36.57(OS7): www 2. ...

Posted by amitshetye on Thu, 21 Nov 2019 10:31:06 -0800

Encounter with go -- basic program structure in go

Preface When learning a language, it's hard to avoid learning from the simplest program structure. When mastering another development language (such as the famous java), these things will look like a fish in water. I'll share some simple examples below. Basic program structure Quickly assign values to some variables const ( NUM1 = 1 + iota ...

Posted by estan on Thu, 21 Nov 2019 08:43:30 -0800

Nginx web page optimization

Nginx web page optimization (2) Change Number of Nginx Running Processes In high concurrency scenarios, more Nginx processes need to be started to ensure fast response to handle user requests and avoid blocking You can use the ps aux command to see the number of Nginx running processes Change the configuration method for the number of proces ...

Posted by wilburforce on Wed, 20 Nov 2019 17:11:46 -0800

Personal learning series - installation and use of docker compose

Docker Compose is a docker tool used to define and run complex applications Using Docker Compose eliminates the need for shell scripts to start containers. (configured through docker-compose.yml) Installation of Docker Compose Github source sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-`uname -s`-`uname ...

Posted by Rhiknow on Wed, 20 Nov 2019 10:22:37 -0800

Nginx Learning Reorganization

Installation and Configuration of Nginx 0 Installation Slightly, download it on the official website.Note that Nginx is written in C and is not cross-platform. Different operating systems need to download different Nginx. Nginx Basic Commands under 1 Windows start-up start nginx Close ./nginx -s quit ./nginx -s stop see information ./nginx -V ...

Posted by Naez on Tue, 19 Nov 2019 19:33:30 -0800

Take you to set up your own virtual machine and Redis cluster environment, which is worth collecting!

Preface: We've seen a lot of articles analyzing the use or principles of Redis, but the introduction to a complete set of independent redis cluster environments is not much or not detailed enough. Then, this paper will take you hand to set up a Redis cluster environment, Redis cluster in the company's internal production environment, mostly bu ...

Posted by methodman on Tue, 19 Nov 2019 18:23:55 -0800

(Centos7) Supervisor installation and deployment

1.yum installation yum install epel-release yum install -y supervisor 2. Configuration fileAfter the supervisor is installed successfully, no default configuration file is provided. You can generate the initialization configuration file of the supervisor by running the echo supervisor conf program mkdir /etc/supervisor echo_supervisord_conf &g ...

Posted by Valdhor on Tue, 19 Nov 2019 12:13:26 -0800

Notes on the installation of Redis3.0 in CentOS 6.5

CentOS 6.5 install Redis3.0 1. Install C compilation environment First, you need to install the C environment for compiling Redis, and execute the following commands at the command line: [root@itzhouq32 tools] yum install gcc-c++ 2. Upload redis3.0 to Linux 3. Unzip redis. I unzip it to / usr/local [root@itzhouq32 tools]# tar -xvf redis-3.0.0.t ...

Posted by jwwceo on Tue, 19 Nov 2019 10:43:52 -0800