WIndows’ CMD\PowerShell command line startup program runs a nohup command similar to Linux system in the background.

There is no command similar to nohup under windows, but you can use other commands to achieve this function. 1. Explanation of commands used: 1. Start-Process: Start one or more processes on the local computer. Related introduction links: Start-Process (Microsoft.PowerShell.Management) | Microsoft Learn? Mainly used parameters 1.1, -WindowStyle Specifies the state of the window used […]

Git command line usage guide

Git command line usage guide Part One: Configuring Git 1.1 Set user information 1.2 Configure line break processing Part 2: Create and configure the warehouse 2.1 Initialize the warehouse 2.2 Clone the repository 2.3 Recursive cloning 2.4 Deep cloning Part 3: Basic Operations 3.1 Add files 3.2 Commit changes 3.3 View status and submission history […]

Springboot2.x integrated lettuce connection redis cluster reports timeout exception Command timed out after 6 second(s)

Original/Zhu Jiqian Background: Recently, I was doing a stress test on a newly developed Springboot system. I found that when I first started the stress test, I could access data from the redis cluster normally. However, after a few minutes of pause, and then when I continued to use jmeter to perform the stress test, […]

Flink SQL –Command line usage (02)

1. Window function: 1. Create table: — Create kafka table CREATE TABLE bid ( bidtime TIMESTAMP(3), price DECIMAL(10, 2) , item STRING, WATERMARK FOR bidtime AS bidtime ) WITH ( ‘connector’ = ‘kafka’, ‘topic’ = ‘bid’, — the topic of the data ‘properties.bootstrap.servers’ = ‘master:9092,node1:9092,node2:9092’, — broker list ‘properties.group.id’ = ‘testGroup’, — consumer group ‘scan.startup.mode’ […]

Getting started with git commands

Reference Liao Xuefeng git tutorial-recommended git diagram Branch naming convention ps: The pictures are all other people’s 1.Basic concepts Region Four areas: Working Directory, Staging Area (stage/index), Local Repository, and Remote Repository. The relationship between them is as follows: – branch Master branch (master/main) (the master branch is always the stable version available and cannot […]

Apache Airflow (4): Airflow scheduling shell command

Personal homepage: IT Pindao_Big data OLAP system technology stack, Apache Doris, Clickhouse technology-CSDN blog Private chat with bloggers: Join the big data technology discussion group chat to get more big data information. Blogger’s personal B stack address: Brother Bao teaches you about big data’s personal space – Brother Bao teaches you about big data personal […]

Golang os package: process creation and termination, running external commands

The os package and its subpackage os/exec provide methods for creating processes. Generally, the os/exec package should be used first. Because the os/exec package relies on the key process creation APIs in the os package, for ease of understanding, we first discuss the process-related APIs in the os package. part. Creation of process In Unix, […]

Flink SQL — command line usage

1. Start Flink SQL First start the Flink cluster and select independent cluster mode or session mode. The session mode is selected here: yarn-session.sh -d Starting the Flink SQL client: sql-client.sh 2. kafka SQL connector When using kafka as a data source, you need to upload the jar package to flnik’s lib: /usr/local/soft/flink-1.15.2/lib You can […]

kubectl declarative resource management commands

Table of Contents 1. Introduction to declarative resource management: 2. Declarative related commands: 1. Grammar format: 2. View the resource configuration list: 3. Explain the resource configuration list: 4. Modify the resource configuration list and apply: 4.1 Offline modification: 4.2 Online modification: 5. Delete the resource configuration list: 3. Detailed explanation of yaml file: 1. […]

Basic usage of Linux sed command

1. sed (stream editor) Non-interactive editor that processes content one line at a time. (powerful streaming text editor) During processing, the currently processed line is stored in a temporary buffer, called “pattern space”, and then the sed command is used to process the contents of the buffer. After the processing is completed, the contents of […]