Solution to the error problem of Vscode remotely connecting to Ubuntu

Solution to the error problem of Vscode remotely connecting to Ubuntu

1. Background of the incident:

Because of work needs to use vscode remote connection to Ubuntu. (The specific connection method can be found on Baidu, this article is limited to sharing the problems encountered)

2. Problem phenomenon:

A problem occurred during this process. Its text description is: Could not establish connection to "IP address" and the process attempted to write to a pipe that does not exist.

As shown in the following figure:

3. Problem Analysis:

1. Search for the cause online based on the error reported.

There are too many and too broad matches for the keyword "The pipe that the process attempted to write to does not exist", such as due to installing Git, due to upgrading the Ubuntu system, and due to not installing the open ssh software. Apart from being dazzled, I gained nothing. So change your thinking.

2. Identify the problem, is it a problem with the connection party (vscode, Windows) or Ubuntu?

To verify the direction, I used the secureCRT software to successfully connect to Ubuntu remotely. This proves that all aspects of the Ubuntu system are configured OK.

3. Further narrow down the scope, vscode software or window configuration issues

To further narrow the scope, I used cmd to successfully connect to Ubuntu (the specific operation method can be found on Baidu, there are many tutorials, which will not be repeated here). Then it is probably a problem with vscode itself.

Note, because I was worried that there was an error in installing the open ssh software. It is worth mentioning that if openssh cannot be installed, you can install the Git software, which will help the system install openssh. (Windows 10 comes with openssh, so you don’t need to worry about this issue)

4. Identify specific issues

At this point, the scope of the problem is very small. After reading the posts of the experts, I finally located it as a file permission problem of ssh.

I pasted the great god’s post, as shown below:

In layman's terms: the remote-ssh plugin in vscode will change the permissions of the .ssh/config file.

So, I immediately modified the permissions of .ssh so that it can be accessed normally by vscode.

4. Problem Solving

1. Modify the permissions of .ssh

(The modification method is on Baidu, please forgive me for being too lazy to write it)

After a lot of trouble, I tried it out with great joy, but it still didn't connect. It was the same formula and the same problem.

There must be some other problem.

Then just keep looking. . . . . Here, I would like to express my special thanks to the Internet masters who are willing to share their experiences, allowing a rookie like me to stand on the shoulders of giants and "copy".

It turns out that you also need to add the config path in the remote-ssh plug-in, otherwise the former cannot be recognized. Um. . . That’s right, if you don’t tell it the address, it won’t be able to find it.

2. Add config path

To avoid verbose text, please see the following picture

Finally, you all understand. The problem was successfully solved. This is the happiest thing today. Hahahaha.

V. Acknowledgements

Thanks to the big guys who shared selflessly on the Internet.

Summarize

This is the end of this article about the error problem of Vscode remote connection to Ubuntu. For more related content about the error problem of Vscode remote connection to Ubuntu, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • VSCode remotely connects to other hosts' WSL2
  • How to connect to and configure vscode remotely via Remote SSH
  • VSCode remote connection server error: Could not establish connection to

<<:  vue+element-ui implements the head navigation bar component

>>:  MySQL backup table operation based on Java

Recommend

Detailed tutorial on installing Docker on CentOS 7.5

Introduction to Docker Docker is an open source c...

How to prohibit vsftpd users from logging in through ssh

Preface vsftp is an easy-to-use and secure ftp se...

Solution to the problem "Table mysql.plugin doesn't exist" when deploying MySQL

Today I deployed the free-installation version of...

Optimization of MySQL thread_stack connection thread

MySQL can be connected not only through the netwo...

Implementation of CSS text shadow gradually blurring effect

text-shadow Add a shadow to the text. You can add...

How to install the latest version of docker using deepin apt command

Step 1: Add Ubuntu source Switch to root su root ...

Detailed explanation of js event delegation

1. Each function is an object and occupies memory...

This article will show you the basics of JavaScript: deep copy and shallow copy

Table of contents Shallow copy Deep Copy Replenis...

Common structural tags in XHTML

structure body, head, html, title text abbr, acro...

Detailed explanation of mysql record time-consuming sql example

mysql records time-consuming sql MySQL can record...

Detailed explanation of the use of custom parameters in MySQL

MySQL variables include system variables and syst...

Ubuntu Docker installation in vmware (container building)

1. Mind Map 2. How to build a container 2.1 Prepa...