Installing and deploying RocketMQ for Linux

introduction One of Alibaba's core distributed technologies is RocketMq. As a distributed message middleware, it has been baptized by Taobao's double 11 and far exceeds activeMq in function and performance 1. You should know that RocketMQ native supports distributed, while ActiveMQ native has a single point. 2.RocketMQ can guarantee s ...

Posted by Cronikeys on Mon, 08 Nov 2021 19:29:20 -0800

MHA high availability configuration and failover

1, Understanding MHA 1. When is MHA MHA (MasterHigh Availability) is a set of excellent software for failover and master-slave replication in MySQL high availability environment. The emergence of MHA is to solve the problem of MySQL single point. During MySQL failover, MHA can automatically complete the failover operation within 0-30 seco ...

Posted by pspeakman on Mon, 08 Nov 2021 16:31:25 -0800

Qinglong 2.10+XDD-Plus+nvjdc SMS authentication login docking xdd-plus (11.9 update)

Exchange Group: 876618546           Exchange Group: 876618546 Direct boarding link Catalog I. Preparations   2. Start building 1. Install docke and set up boot-up 2. Draw the green dragon panel 3. Log on to the Qinglong panel 4. Pull Timer Task Script Warehouse 5. Apply Settings Configu ...

Posted by karenruth on Mon, 08 Nov 2021 13:53:55 -0800

Steps to build zookeeper cluster and solutions to problems

1. Preparation before construction 1.1 ssh password free login configuration method Prepare at least three host servers. For example, my host servers are: Server nameIPServer master81.68.172.91Server slave1121.43.177.90Server slave2114.132.222.63 First, generate the secret key on the master server. The command to generate the secret key ...

Posted by steve012345 on Mon, 08 Nov 2021 06:41:09 -0800

Java Web Learning - data sharing among multiple servlets

1, Data sharing 1. Overview of data sharing Data sharing is data transfer. For example, how to transfer data to another Servlet class myservletttwo after MyServletOne is completed becomes data sharing 2. Data sharing solution (1) ServletContext interface (2) Cookie class (3) HttpSession interface (4) HttpServletRequest interface 2 ...

Posted by ozzmans on Mon, 08 Nov 2021 04:17:18 -0800

Conversation and its technology

Cookie (saved on client) What is a Cookie: Cookie(s) is actually a small text file. The information content exists in the form of key value. A cookie is like a membership card of a mall. When a user visits the website through the browser, the website server can save some necessary information in the cookie and return it to the browser through ...

Posted by mikesab on Sun, 07 Nov 2021 17:24:26 -0800

Linux server program specification, server log, user and relationship between processes

Server program specification Linux server programs generally run as background processes (daemons). It does not control the terminal, so it will not accidentally receive user input. The parent process of the daemon is usually the init process (PID 1).A professional log system is required for the debugging and maintenance of the server. L ...

Posted by hammerloaf on Sun, 07 Nov 2021 11:31:49 -0800

Quickly understand the content of BIO and NIO threads in Java. It's enough to read this article

In this article, I want to complete the basic notes of the network programming model supported by Java, so that I and you can understand the I/O mode of network programming supported by Java. Introduction (small stove) Speaking of network programming, let's first understand the I/O modes of network programming supported by Java: BIO, NIO, and ...

Posted by richblend on Fri, 05 Nov 2021 15:16:24 -0700

Java web-5 session and its session Technology

1, Cookie (saved on client) 1. What is a Cookie Cookie(s) is actually a small text file. The information content exists in the form of key value. A cookie is like a membership card of a mall. When a user visits the website through the browser, the website server can save some necessary information in the cookie and return it to the browser ...

Posted by sunnypal on Fri, 05 Nov 2021 11:00:26 -0700

Linux Source Parsing--From Initialization of main Function to Open Interrupt

The three assemblers that are executed before the Linux system starts are mentioned above. The head.s program actually enters the Linux source code written in C by jumping out of the main function stack and into the main function execution. Previous article can be jumped here Linux Source Parsing - From Startup to main Function Based on the Li ...

Posted by php3ch0 on Fri, 05 Nov 2021 10:03:17 -0700