MySQL service MySQL+MHA service

MySQL MHA 1, MHA concept MHA (MasterHigh Availability) is a set of excellent software for failover and master-slave replication in MySQL high availability environment.The emergence of MHA is to solve the problem of MySQL single point.During MySQL failover, MHA can automatically complete the failover operation within 0-30 seconds.MHA can e ...

Posted by ruano84 on Sun, 20 Feb 2022 09:08:01 +0100

centOs7 installation and configuration mysql

1, Installing YUM Repo 1. Download command: wget https://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm 2, To install repo: rpm -ivh mysql57-community-release-el7-9.noarch.rpm [root@VM-0-10-centos server]# rpm -ivh mysql57-community-release-el7-9.noarch.rpm warning: mysql57-community-release-el7-9.noarch.rpm: He ...

Posted by boby on Sun, 20 Feb 2022 02:35:06 +0100

Linux basic commands

Meaning of different file colors Color modification:[root@fyr ~]# ls --color=no / / turn off color [root@fyr ~]# ls --color=yes / / open color Black: ordinary file (e.g. txt)Blue: folderSky blue: linked filesGreen: executableRed: compressed fileYellow: block device files (e.g. hard disk, U SB flash disk) Expansion: -Ordinary ...

Posted by Pro Ninja on Sun, 20 Feb 2022 02:04:38 +0100

Linux Installation and management program: rpm software package and source code installation (the most beautiful place of time is to make you and I become us)

catalogue 1, Linux Application Foundation 1. Relationship between application program and system command  2. Common package encapsulation types 2, RPM package management tool 1.Red-  Hat Package Manager 2.RPM software package 3.rpm command function 4. Query RPM package information 5. Install, upgrade and uninstall RPM software pac ...

Posted by KingWylim on Sun, 20 Feb 2022 00:18:27 +0100

Linux common commands

catalogue 1. Document processing command 1.1 # directory processing 1.2 document processing 1.3 link handling 2. Permission management command 2.1 change authority 2.2 # change of ownership 3. File search command 4. Help command 5. User management commands 6. Compression and decompression command 7. Network command 8. Shutdown and ...

Posted by TFD3 on Sat, 19 Feb 2022 21:28:25 +0100

Docker management container data

docker manages data in containers in two main ways: -Data Volumes -Mount Host Directory (Bind mounts) Data Volume in order to well realize data saving and data sharing, Docker puts forward the concept of Volume, which simply bypasses the default federated file system and exists on the host in the form of normal files or directories. Also kno ...

Posted by fantasticham on Sat, 19 Feb 2022 19:08:40 +0100

Flume introduction and flume deployment, principle and use

Flume introduction and flume deployment, principle and use Flume overview Flume is a highly available, reliable and distributed system for massive log collection, aggregation and transmission provided by Cloudera. Flume is based on streaming architecture, which is flexible and simple. Flume's main function is to read the data from the server ...

Posted by CONFUSIONUK on Sat, 19 Feb 2022 16:46:18 +0100

Build Prometheus+Grafana+Alertmanager

1. Principles and Features (Functions) 1. Main features Multidimensional data model (Time series consists of metric name and labels for k/v)Flexible Query Language ( PromQL)Distributed storage without dependencies; Single-node servers are autonomousUse http protocol, pull mode to pull data, easy to understandMonitoring objectives, which can b ...

Posted by PHP Man on Sat, 19 Feb 2022 14:02:56 +0100

Introduction to Shell programming

Introduction to Shell programming Symbols of references: Single quotation mark: WYSIWYG Double quotation marks: parse variables (treat the input as a whole) Backquotes: parsing commands No quotation marks: similar to double quotation marks Why learn Shell programming Shell will be widely used in Linux system, and we also need to ...

Posted by Salsaboy on Sat, 19 Feb 2022 13:43:00 +0100

[Linux command] - 13 - how to set file special permissions

introduction This article introduces three special permissions of Linux file system: suid, sgid and sticky. Article catalogue 0 × 1. How to view the default permissions of files created by the current user0 × 2. How to add suid permission to a file0 × 3. How to add sgid permission to a folder0 × 4. How to add sticky p ...

Posted by mcsleazycrisps on Sat, 19 Feb 2022 10:29:07 +0100