rsync remote synchronization

1. rsync overview 1.rsync is an open source, fast, multi-functional and excellent tool that can realize full and incremental synchronous backup of local or remote data. It can realize the backup and migration characteristics of data without changing the attribute information of the original data. In short, it is replication, which can be u ...

Posted by Hi I Am Timbo on Thu, 16 Dec 2021 14:18:54 +0100

Network configuration under linux

1. What is IP ADDRESS internet protocol ADDRESS ## network process address ipv4 internet protocol version 4 (for specific sub protocols, please refer to the network protocol.) ip is composed of 32 01s 11111110.11111110.11111110.11111110 = 254.254.254.254 The ip address consists of network bits and host bits, One 0 and one is called 1bit. 8bit ...

Posted by ibanez270dx on Wed, 15 Dec 2021 10:41:05 +0100

CentOS 7 installation oracle19c rac mutual trust configuration + grid installation

grid mutual trust configuration Mutual trust configuration: connect two virtual machines. Node 1 virtual machine can operate node 2 virtual machine by entering password. First, let's understand the difference between rsa and dsa? DSA signature is faster, but validation is slower. A DSA key of the same strength as RSA (1024 bits) generates a ...

Posted by Ajdija on Tue, 14 Dec 2021 22:50:50 +0100

Remote access and control that operation and maintenance personnel must understand

Remote access and control of [Linux dictionary] preface SSH is basically used for remote management of linux systems. The reason is very simple: Telnet, FTP and other transmission methods transmit user authentication information in plaintext, which is inherently unsafe and has the risk of being eavesdropped by the network. SSH (Secure ...

Posted by [e]r!k on Tue, 14 Dec 2021 19:56:52 +0100

What do SSL, TLS, HTTP, HTTPS and SSH mean respectively?

HTTP + SSL/TLS = HTTPSSSL(Secure Sockets Layer)TLS(Transport Layer Security)HTTP(HyperText Transfer Protocol) enables clear text data exchange between computers. The default port is 80HTTPS(HyperText Transfer Protocol Secure) encrypts data with SSL/TLS, and then transmits it through HTTP to ensure data security. The default port is 443Differenc ...

Posted by Erik-NA on Sat, 27 Nov 2021 01:48:38 +0100

linux scp command usage details

1: Foreword The Linux scp command is used to copy files and directories between Linux. scp is the abbreviation of secure copy. scp is a secure remote file copy command based on ssh login in linux system. scp is encrypted, rcp is not encrypted, and scp is an enhanced version of rcp. scp command can also be used under Windows system, so we ...

Posted by lucifer27 on Sat, 13 Nov 2021 02:36:40 +0100

Chapter 2 remote login service in linux

Experimental environment: westos-vmctl reset nodea westos-vmctl reset nodeb In the virtual machine nodea:   Perform the same operation in the virtual machine nodeb:   hostnamectl set-hostname westoshost139.westos.org      ## Modify virtual machine name 1, Openssh features 1. Purpose of sshd service ...

Posted by jallard on Sat, 23 Oct 2021 15:17:22 +0200

Hadoop, zookeeper, spark installation

New Folder: Compressed Package Folder, Software Installation Directory Folder The following does not indicate which host operations are all Master host operations # Recursively Create Compressed Package Folder mkdir -p /usr/tar # Recursively create the software installation directory folder mkdir -p /usr/apps Install upload and color code c ...

Posted by Skepsis on Thu, 21 Oct 2021 15:31:14 +0200

Struts of SSH Framework

Preface: last time, I shared Maven of SSH framework with you. Today, I share struts of SSH framework with you. Struts is very similar to the custom MVC shared with you earlier, but there are also differences. Next, I will share my knowledge with you 1, Clear objectives:         1. struts configuration     &nbsp ...

Posted by Kyori on Wed, 13 Oct 2021 16:22:35 +0200

Spring boot + mybatis plus to implement CRUD common simple version

Mybatis Plus Today's goal: Understand the features of mybatisplusGet started with mybatisplusBe able to master the common annotations of mybatisplusBe able to master the common additions, deletions, modifications and queries of mybatisplusBe able to master mybatis plus automatic code generation 1 MybatisPlus overview MyBatis plus (MP for sh ...

Posted by t_galan on Tue, 05 Oct 2021 20:05:00 +0200