Hyperledger Fabric 2.x environment construction

1, Explain The core of the blockchain network is the distributed ledger, which records all transaction information in the network. Hyperledger Fabric is an open source, enterprise level, authorized distributed ledger solution platform. Hyperledger Fabric is supported by modular architecture and has excellent confidentiality, scalability, fl ...

Added by TraceyK on Tue, 25 Jan 2022 06:14:53 +0200

Summary and practice of basic knowledge of Linux -- Linux

1, Linux system basic instructions and text editor 1. Basic instructions of Linux system 1.1 shutdown and restart (1) Shutdown: 1.shutdown -h //Turn it off immediately 2.shutdown -h 5 // Shutdown in 5 minutes 3.shutdow -h 20:25 //Shut down at 8:25 p.m 4.poweroff // Turn it of ...

Added by pgosse on Tue, 25 Jan 2022 01:50:19 +0200

Let's learn Shell - shell variables

Shell variable Use a fixed string to represent unfixed content Type of variable Custom variable Defining variables: variable name = variable value. Variable names must start with letters or underscores and are case sensitive (example: ip1=192.168.2.115)Reference variable: $variable name or ${variable name}View variables: echo $vari ...

Added by daijames on Mon, 24 Jan 2022 05:13:22 +0200

Shell programming and variables

1, Overview 1. Concept 1) What is a shell: shell It is a command interpreter, which is at the outermost layer of the operating system. It is responsible for directly talking with the user, interpreting the user's input to the operating system, processing various operating system output results, and outputting them to the screen for feedb ...

Added by Thatsmej on Sun, 23 Jan 2022 23:04:42 +0200

Take you ten days to easily complete the Go micro service series

preface We will show you a go zero micro service example in detail through a series of articles. The whole series is divided into ten articles, and the directory structure is as follows: Environment construction Service splitting User services Product service Order service (this article) Payment services RPC service Auth authen ...

Added by Dat on Sat, 22 Jan 2022 05:45:50 +0200

Basic use of git (configuration file, log / reference log, version fallback, undo elimination, modify commit submission)

0 background This article is summarized in the git tutorial of gitcode. 1 History In order to manage the code merging of the Linux system, Linus Torvalds used the distributed version control system BitKeeper at the beginning. Since the permission is withdrawn later, Linus firmly opposes CVS and SVN (although it is free, it is not only sl ...

Added by runelore on Wed, 19 Jan 2022 08:44:29 +0200

The tools hidden by programmers can easily realize project development. A command initiates Merge Request project code submission and consolidation, and the Code View reviewer can be specified

The tools hidden by programmers can easily realize project development. A command initiates Merge Request project code submission and consolidation, and the Code View reviewer can be specified. In the development of the latest git project, the merge request tool is launched with one click to automatically identify the local environment. It sup ...

Added by slipster70 on Tue, 18 Jan 2022 21:33:33 +0200

LINUX learning basic chapter directory operation command

Command basic format command prompt [root@localhost ~]# root: represents the currently logged in user.Localhost: short host name of the current system (use the "hostname" command to view the full host name: localhost.localdomain)~: represents the current directory, the tilde represents the home directory, the super user home ...

Added by harishkumar09 on Wed, 05 Jan 2022 09:52:39 +0200

shell programming tutorial

I Format of shell script file shell script file generally consists of three parts: interpreter, command code and comments. [root@server ~]# cat test #!/bin/bash <<notes Here are multiline comments notes echo 'hello world' # Here is a single line comment echo valar morghulis [root@server ~]# sh test hello world valar morghulis The fi ...

Added by PHPisFUN on Wed, 05 Jan 2022 09:22:41 +0200

Linux common commands (latest version in 2022)

1. ls command It is the abbreviation of list. Through ls command, you can not only view the files contained in the linux folder, but also view the file permissions (including directory, folder and file permissions) View directory information, etc. ls -a List all files in the directory, including.Start hidden file ls -A List Division.an ...

Added by severndigital on Wed, 05 Jan 2022 09:17:47 +0200