Linux deploy -- installation and configuration of pagoda panel

Linux deploy - (2) installation and configuration of pagoda panel The last article talked about how to install linux deploy and install linux distribution in it. The following describes how to install and configure the pagoda panel and build a basic server environment Pagoda panel is a free server management platform. You can install it on you ...

Added by Dang on Fri, 18 Feb 2022 23:22:13 +0200

Redis operation and maintenance - learning from scratch

1, Introduction to Redis Redis is an open-source SQL database developed based on C language for the underlying code. Redis runs and persists based on memory and adopts the storage form of key value (key value pair). It is an indispensable part of the current distributed architecture Advantages of Redis It has extremely high data reading ...

Added by coverman on Thu, 17 Feb 2022 22:36:49 +0200

Create kubernetes cluster v1.0 using kubedm twenty-one

The local development environment takes macOS as an example. Github warehouse address: github.com/jxlwqq/kubernetes-examp... Install VirtualBox and Vagrant install VirtualBoxinstall Vagrant Start the virtual machine Three virtual machines are configured, namely k8s-1(192.168.205.10), k8s-2(192.168.205.11) and k8s-3(192.168.205.12). See con ...

Added by savagenoob on Thu, 17 Feb 2022 18:34:07 +0200

2021-10-12-linux Foundation

linux command: it is essentially a program. Many programs are written in c language, such as python, java, c + +, ruby, php, go, etc [root@localhost ~]# Cat / etc / CentOS release to check the version of linux CentOS Linux release 7.6.1810 (Core) [root@localhost ~]# cali@cali:~$ cat /etc/issue stay Ubuntu Check the version of the system ...

Added by zalath on Thu, 17 Feb 2022 04:57:46 +0200

CMake tutorial summary under Linux

CMake is an open source and cross platform construction tool, which allows us to generate local Makefile by writing a simple configuration file. This configuration file is independent of the running platform and compiler, so there is no need to write Makefile in person, and the configuration file can be directly used on other platforms without ...

Added by alireza on Wed, 16 Feb 2022 04:09:11 +0200

docker learning notes 5

1, docker network 1.1 understanding docker0 Empty all containers in docker docker rm -f $(docker ps -aq) Clear all images in docker docker rmi -f $(docker images -aq) ctrl+l is the shortcut key to clear the screen, which is equivalent to clearip addr view the IP address information of the server, and you can see the information of three ...

Added by ranjita on Wed, 16 Feb 2022 03:10:06 +0200

vnstat traffic statistics (version 2.8)

vnstat traffic statistics (version 2.8) vnStat is a console based Linux and BSD network traffic monitor that maintains network traffic logs for selected interfaces. It uses the network interface statistics provided by the kernel as the information source. This means that vnStat will not actually sniff any traffic, and can ensure a small use of ...

Added by fallen_angel21 on Tue, 15 Feb 2022 09:36:58 +0200

Centos builds dns server

Centos is a distributed name management and mapping system The main work is the mutual translation between ip address and domain name and the management of domain name address mapping database. Tip: the following is the main content of this article. The following cases can be used for reference 1, DNS server domain name overview Dom ...

Added by programmermatt on Tue, 15 Feb 2022 02:13:37 +0200

Linux system programming - process concept, process management, signal processing

1. Process knowledge points The process in the operating system is the process of one-time execution of the program and the basic unit of dynamic execution of the operating system; Whenever a new process is created, the operating system will assign a unique identifier to the new process to facilitate subsequent management of the process. The ...

Added by Steffen on Mon, 14 Feb 2022 16:35:04 +0200

pg_basebackup backup and recovery

1,pg_basebackup 1.1,pg_basebackup principle Official document: pg_basebackup (postgres.cn) 1) Create a checkpoint, open FPW (full page writes), and create a backup label (store checkpoint location, time and other information) 2) Establish a connection with the database through the stream replication protocol, and the WAL Sender process ...

Added by bguzel on Mon, 14 Feb 2022 03:52:09 +0200