Detailed explanation of PG status of distributed storage Ceph
1. PG introduction
Following the last shared< Ceph introduction and principle architecture sharing >This time, I will mainly share the detailed explanation of various states of PG in Ceph. PG is one of the most complex and difficult concepts. The complexity of PG is as follows:
At the architecture level, PG is located in the middle of t ...
Added by vulcant13 on Fri, 26 Nov 2021 07:19:03 +0200
Kubernetes CKA certified operation and maintenance engineer's notes - kubernetes cluster construction
1. Two ways to deploy K8s in production environment
kubeadm Kubedm is a tool that provides kubedm init and kubedm join for rapid deployment of Kubernetes clusters. Deployment address: https://kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm/Binary It is recommended to download the binary package of the distribution from the officia ...
Added by dbdbdb on Thu, 25 Nov 2021 01:02:13 +0200
Variable and encryption in Ansible
Variable naming
1. It can only contain numbers, underscores and letters 2. Can only start with underscore or letter!
Variable level
Global: set from the command line or configuration file Play: set in play and related structures Host: tasks collected or registered by lists, facts
Variable priority setting: Narrow and wide area
Variable set ...
Added by Vettel on Wed, 24 Nov 2021 21:52:02 +0200
Gitstats git historical statistics tool
GitStats - Git historical statistics tool
2020-07-212020-07-21 10:31:28
read
1.1K0
If you are a member of the R & D effectiveness team or engaged in CI/CD or DevOps, in addition to providing infrastructure, indicators and data are also a very important link. For example, you need to analyze ...
Added by twinzen on Wed, 24 Nov 2021 14:50:35 +0200
Concurrent programming case: high performance current limiter Guava RateLimiter
Guava is Google's open source Java class library, which provides a tool class RateLimiter. Let's take a look at the use of RateLimiter to give you a sensory impression of current limiting. Suppose we have a thread pool, which can only process two tasks per second. If the task submitted is too fast, it may lead to system instability. At this tim ...
Added by mirana on Tue, 23 Nov 2021 18:43:40 +0200
Linux NFS Service & samba&ftp
NFS introduction
Network file system is a network file system that shares files with other clients for mounting
nfs can only be shared between linux
characteristic
(1) Provide transparent file access and file transfer
(2) It is easy to expand new resources or software without changing the existing working environment
(3) High performance ...
Added by art15 on Tue, 23 Nov 2021 04:59:03 +0200
[spring cloud] spring cloud is the correct way to deal with all registry clusters after they are down
Correct handling method after registry downtime
Microservice is a major trend at present. The registry is not only the most basic component of microservice, but also the most core component. It provides the client with a list of all callable services. Because of this, the availability of the registry is highly required in the microservice ...
Added by nileshkulkarni on Tue, 23 Nov 2021 03:35:31 +0200
Linux Svn automatic update
Linux Svn automatic update
1. Installation
yum install subersion
2. Configuration
2.1 create warehouse
We can store all the warehouses in / www/server/svn/tests. Later, we can put all the warehouses in / www/server/svn
[root ~]# cd /www/server/svn
[root svn]# svnadmin create /www/server/svn/tests
[root svn]# ls
chats tests
[root svn]# c ...
Added by kb0000 on Mon, 22 Nov 2021 14:33:36 +0200
Chapter 6 of the third book: enterprise DNS server construction
This experiment requires two hosts nodea and nodeb
1. Explanation of dns terms DNS: domain name service 1) About clients: /etc/resolv.conf ## dns points to file nameserver 172.25.254.117 2) Test: host www.baidu.com ## Address resolution command dig www.baidu.com   ...
Added by mbrown on Thu, 18 Nov 2021 11:42:06 +0200
Install FTP server for Ubuntu 14.04
install
Install the ftp server with the following command
sudo apt install vsftpd
Software management
Software management mode
service vsftpd start start-up
service vsftpd restart restart
service vsftpd stop stop it
service vsftpd status View status
And write the configuration
anonymous_enable=YES
anon_root= /data/pub
loca ...
Added by Mindwreck on Thu, 18 Nov 2021 10:12:09 +0200