How to connect to a remote server and transfer files via a jump server in Linux

How to connect to a remote server and transfer files via a jump server in Linux

Recently, I encountered many problems when deploying the environment on the Linux host. The first one was the problem of remotely connecting to the server to transfer files through a jump server.

I have read many solutions online, most of which say to use the Alt+P command of SecureCRT software and then transfer via SFTP , which mainly involves the following instructions

There are several important commands in the sftp interface.
cd is mainly used to open the location where the server stores files
LCD is mainly used to open the location of the local file to be uploaded
put is the command to upload a file
Get is the command to download files from the server. There are several important commands in the sftp interface.
cd is mainly used to open the location where the server stores files
LCD is mainly used to open the location of the local file to be uploaded
put is the command to upload a file
get is a command to download files from the server

However, the above command does not solve the problem. So how can we upload files more quickly through instructions? Here is a command rz -be

rz-be

Simply enter the above command in the command line window to pop up this dialog box, select the file, and then wait for the file to be transferred. Please see the following notes

Notice:

When you use the rz -be command, the file may not be uploaded for the first time, so you need to use the command again.

Summarize

This is the end of this article about how to connect to a remote server and transfer files via a jump server in Linux. For more information about how to connect to a remote server and transfer files in Linux, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to check whether the ports of the local computer and the remote server are connected under Linux
  • Linux uses the scp command to copy files to the local computer and copy local files to the remote server
  • How to view the status of remote server files in Linux
  • Connect to the remote server through jsch in Java to execute linux commands
  • Detailed explanation and examples of file transfer between Linux and Windows
  • C language implementation of socket file transfer under Linux
  • Linux network programming: reliable file transfer example based on UDP
  • Linux network programming socket file transfer example

<<:  JavaScript to achieve digital clock effects

>>:  Mysql join table and id auto-increment example analysis

Recommend

Tutorial on installing MySQL with Docker and implementing remote connection

Pull the image docker pull mysql View the complet...

Detailed explanation of common usage of pseudo-classes before and after in CSS3

The before/after pseudo-class is equivalent to in...

The difference between Display, Visibility, Opacity, rgba and z-index: -1 in CSS

We often need to control the hidden, transparent ...

Detailed tutorial on installing mysql on centos 6.9

1. Confirm whether MySQL has been installed. You ...

Detailed explanation of root directory settings in nginx.conf

There are always some problems when configuring n...

Understanding innerHTML

<br />Related articles: innerHTML HTML DOM i...

Basic security settings steps for centos7 server

Turn off ping scanning, although it doesn't h...

Alibaba Cloud Server Linux System Builds Tomcat to Deploy Web Project

I divide the whole process into four steps: Downl...

Summary of common functions and usage methods of WeChat applet development

Here, I have mainly sorted out some commonly used...

Detailed explanation of the use of base tag in HTML

In requireJS, there is a property called baseURL....

Summary of common operation skills of MySQL database

This article summarizes common operating techniqu...

How to import CSS styles into HTML external style sheets

The link-in style is to put all the styles in one...

MySQL Failover Notes: Application-Aware Design Detailed Explanation

1. Introduction As we all know, in the applicatio...

How to declare a cursor in mysql

How to declare a cursor in mysql: 1. Declare vari...

Introduction and use of triggers and cursors in MySQL

Trigger Introduction A trigger is a special store...