Unveil docker -- basic theory combing and installation process demonstration

Unveil docker (basic theory and installation details) Preface This article will focus on the following aspects to unveil docker: What is docker? Why do I need docker? The core concept of docker What is docker? Based on Linux, docker is an open source tool to run applications in it, which can be considered as a lightweight virtual machine. Do ...

Posted by rp2006 on Mon, 13 Apr 2020 00:51:18 -0700

Linux system: building PostgreSQL relational database under Centos7

Source code: GitHub point here || GitEE point here 1, Introduction to PostgreSQL 1. Database introduction PostgreSQL is a powerful open source database system, which has the characteristics of reliability, stability, data consistency, and can run on all major operating systems, including Linux, Unix, Windows, etc. PostgreSQL is a complete tran ...

Posted by MaxBodine on Sat, 11 Apr 2020 21:55:33 -0700

linux builds php performance analysis tool

First on the renderings: Installation environment Centos,php7,MongoDB3,nginx php extension mongodb: http://pecl.php.net/package/mongodbtideways_xhprof: https://github.com/tideways/php-xhprof-extension Install MongoDB3 By default, MongoDB2 is installed in my environment yum. xhgui requires version 3 or above. Create a yum source for MongoDB3 vi ...

Posted by dkjariwala on Sat, 11 Apr 2020 08:17:19 -0700

Docker multi container management - Docker Compose

Docker provides a container choreography tool, Docker Compose, which allows users to define a set of associated application containers in a template (YAML format). This set of containers will be based on the "– link" and other parameters in the configuration template. To automatically sort the priority of startup, simply execut ...

Posted by psunshine on Thu, 09 Apr 2020 08:11:53 -0700

Deploy Rabbitmq cluster

1, Deploy Rabbitmq clusterRabbitmq cluster can be divided into two ways:1. Normal mode: the default cluster mode. The message body only exists on one node;2. Mirror mode: make the required queue into a mirror, which exists in multiple nodes.ha-mode:  all: queue to all nodes; exatly: randomly mirror to other nodes; nodes: mirror to the speci ...

Posted by surreal5335 on Mon, 06 Apr 2020 01:22:08 -0700

Install mysql in RPM mode

System environment Centos-7 mysql version mysql-5.7.17 1. Download and unzip rpm package [root@VM_42_245_centos ~]# tar xf mysql-5.7.17-1.el7.x86_64.rpm-bundle.tar [root@VM_42_245_centos ~]# ls mysql-5.7.17-1.el7.x86_64.rpm-bundle.tar mysql-community-client-5.7.17-1.el7.x86_64.rpm mysql-community-common-5.7.17-1.el7.x86_64.rpm ...

Posted by Wo0tHigh on Sat, 04 Apr 2020 21:41:32 -0700

Initial use of haproxy

Initial use of haproxy brief introduction HAProxy provides load balancing and proxy based on tcp and http applications. It is a fast, free and reliable solution Although the performance and stability of HAProxy are not as good as lvs, it is much better than lvs in function install On centos7, HAProxy can be inst ...

Posted by Xu Wei Jie on Sat, 04 Apr 2020 14:50:33 -0700

centos 6.x install squid

Do not set user authentication install # install yum install squid yum install httpd #View version rpm -qa | grep squid #Here is the version I installed #squid-3.1.23-24.el6.i686 Modify profile Use vim to edit the / etc/squid/squid.conf file. As shown below #/etc/squid/squid.conf # The configuration file al ...

Posted by cheald on Sat, 04 Apr 2020 06:04:43 -0700

Setting up MYSQL 5.7.21 text notes in linux

Environmental Science: Virtual machine: VMware 12 Pro Linux: rhel-server-6.4-x86_64 MYSQL: 5.7.21 1. Download mysql In official website: http://dev.mysql.com/downloads/mysql/ , select the following version of mysql to download: 2. Unzip the installation package in / usr/local and rename it mysql [root@mys ...

Posted by zggtf211 on Fri, 03 Apr 2020 21:28:36 -0700

Compiling and installing PHP, LNMP configuration and validation

Compile and install Nginx and Mysql http://blog.csdn.net/qq_36294875/article/details/79352522 [MySQL5.7.11 Compilation and installation] http://blog.csdn.net/qq_36294875/article/details/79344943 [Nginx And simple configuration] Compile installed environment The host is 172.25.23.6 hostname:server6.com K ...

Posted by joeman3429 on Fri, 03 Apr 2020 06:14:47 -0700