The host os reloads the node and adds it back to the RAC cluster
preface
In a normal production environment, we sometimes encounter host disk and other hardware failures that cause the host OS system to fail to start, or the OS system itself fails to repair. At this time, there is no other way except to reinstall the OS system, but how to join the original RAC cluster after reinstallation
๐๐ The followin ...
Posted by SharkBait on Sat, 15 Jan 2022 12:44:48 +0100
QT from entry to soil - TCP/IP network communication (and file transfer)
**
introduction
** TCP/IP communication (i.e. SOCKET communication) is the communication established through TCP/IP protocol on the basis of following the four-tier architecture of ISO/OSI model by connecting the Server end of the Server and the Client end of the Client through the network cable. The controller can be set as Server or Client. ...
Posted by ckdoublenecks on Sat, 15 Jan 2022 11:39:23 +0100
Tomcat source code analysis - startup of Container
1. Start process of Container
stay Tomcat source code analysis (1) - structure composition and core components In, the author analyzes the general composition of Tomcat. The Container container is a core component strongly related to the upper business logic, and is divided into four levels. During the startup of tomcat, the startup proces ...
Posted by jlive on Sat, 15 Jan 2022 07:24:53 +0100
Session session (super detailed)
1, What is a Session
Session is an interface (HttpSession).A Session is a Session. It is a technology used to maintain an association between a client and a server.Each client has its own Session.In the Session session, we often use it to save the information after the user logs in.
2, How to create a Session and get (id number, new or not)
H ...
Posted by buildakicker on Fri, 14 Jan 2022 21:32:03 +0100
Experimental report on Linux command Basics
ls
Abbreviation of common parametersFull name of parameterdescribe-a--allList all files in the directory, including "." Implied file at the beginning-lIn addition to the file name, the file permission, owner, file size and other information are listed in detail-h--human-readableList file sizes in an easy to understand format-tSor ...
Posted by Buglish on Fri, 14 Jan 2022 21:09:35 +0100
Learning notes of UNIX Network Programming Volume 1: socket networking API -- name and address conversion
Domain name system
Domain name system (DNS) is mainly used for the mapping between host name and IP address. The host name can be either a simple name, such as solaris or bsdi, or a fully qualified domain name (FQDN), such as solaris unpbook. com .
resource record
Entries in DNS are called resource records (RR s).
A. A record maps a ho ...
Posted by kparish on Fri, 14 Jan 2022 07:13:58 +0100
Shared memory for Linux interprocess communication
Shared memory allows two unrelated processes to access the same logical memory. It is a very effective way to transfer data between two running processes. Most of the specific implementations of shared memory arrange the memory shared by different processes into the same physical memory. Shared memory is a special address range created by I ...
Posted by FidelGonzales on Thu, 13 Jan 2022 12:27:20 +0100
Nginx configuring reverse proxy
What is? Reverse proxy
The reverse proxy server determines which server provides services. The return proxy server does not provide a server. Just request forwarding. The forward proxy is as follows
Reverse proxy is as follows
ย
Nginx The process of implementing reverse proxy
First, install two tomcat servers and put them into the ngin ...
Posted by Chris_Mc_1985 on Thu, 13 Jan 2022 01:37:33 +0100
Detailed explanation of SSH Service -- local command calling remote host
Detailed explanation of SSH service (IV) -- local calling command of remote host
The SSH server runs on ubuntu 18.04.1SSH client in Windows10
This section mainly explains that ssh calls commands on the remote host locally without logging in to the remote host shell
Application scenario:
In the actual shell script writing process, you need t ...
Posted by -Karl- on Wed, 12 Jan 2022 19:42:34 +0100
WebSocket (5 minutes to get you started)
WebSocket
Background:
The HTTP protocol has a flaw: communication can only be initiated by the client. This one-way request is doomed to be very troublesome for the client to know if the server has continuous state changes. We can only use "Polling" : every once in a while, send a query to see if the server has any new information. ...
Posted by LordTyphon on Wed, 12 Jan 2022 11:31:45 +0100