Kubernetes Identity Authentication and Authorization Operations: Service Account for Access Control

This is the last article in this series. We learned about the basic concepts of access control and the specific operations of authentication and authorization. In this article, we will learn more about service account in access control.   Kubernetes has the concepts of user and service account, which can be used to access resources. Users are ...

Added by CaptainChainsaw on Fri, 06 Sep 2019 18:45:30 +0300

[Linux]-Message Queue for IPC Process Communication

System V message queue Message queue is a simple and effective way to transfer binary data between two processes. Each data block has a specific type, and the receiver can receive data effectively according to the type, instead of having to receive ...

Added by NathanS on Wed, 28 Aug 2019 09:52:44 +0300

Linux boot repair

System boot is the beginning of the operation of an operating system. If there is a problem in boot, the system will not work properly. Is there any way to repair it? The answer is yes. CentOS 7 boot process 1. Boot-up self-check BIOS 2.MBR boot 3.GRUB menu 4. Loading kernel and memory file system initramfs 5. Loading hardware driver and init ...

Added by dgs on Tue, 27 Aug 2019 11:45:09 +0300

Disk Management in unit15 linux System

###################### Identification of Local Storage Devices You can see by inserting u-disk Plug in the U-disk to see the equipment Fdisk-l # # real device (not necessarily system-recognized) Other devices in cat/proc/partition # system Bluekid ...

Added by ciaranmg on Mon, 26 Aug 2019 15:29:42 +0300

Linux Basic Learning

Catalog Linux Basic Learning User Login terminal Interactive interface bash Slow steps to modify ssh connections command prompt Show prompt format command alias Command Format Get help for commands man bash Shortcut tab ke ...

Added by silverphpd on Fri, 23 Aug 2019 04:40:25 +0300

Variables in the shell under Linux

1. Definition of variables Variables are used to store all kinds of data. Scripting languages usually do not need to specify the type when defining variables. They can be assigned directly, and shell variables follow this rule. 2. Variables in sh ...

Added by Fixxer on Thu, 22 Aug 2019 15:38:32 +0300

The annual salary of 50w background senior engineers is one gdb short!

Common commands of gdb: Linux Learning--gdb Debugging 2. Learning examples of gdb: #include <stdio.h> int add_range(int low, int high) { int i, sum; for (i = low; i <= high; i++) sum = sum + i; return sum; } int main(void) { ...

Added by GrayFox12 on Wed, 21 Aug 2019 10:12:06 +0300

python piano block automatic script

Preface In the United States, I just got off the plane and wrote this blog while waiting for my luggage to commemorate my two-day history of trampling pits, as well as a new way of thinking, programming for Baidu. This article introduces how to use p ...

Added by jesse24 on Tue, 20 Aug 2019 16:20:35 +0300

Using Python and shell to realize long stitching cases of text processing

Recently, due to the new requirements of business systems, our platform needs to provide supplier G with a kind of data conversion format and then provide it to customer K. The headache of comparison is that the data provided by supplier G are stored in Excel under Windows, and the data type previously agreed by customer K with our relevant doc ...

Added by Shadow Hatake on Tue, 20 Aug 2019 14:45:14 +0300

C# Runs MySQL database through code configuration (test version: mysql-8.0.15-winx64)

Configure mysql mainly by calling CMD There are three core steps: 1. Decompress mysql file in specified path by code (nuget gets sharpzipXXX, cross-volume copy writes recursive file copy by itself), and add the bin path of mysql to the path of ...

Added by Mew151 on Thu, 15 Aug 2019 13:40:55 +0300