MarkLee's Studio.

使用vscode连接openEuler服务器

2024/07/24
loading

本地主机准备

  • Remote - SSH

服务器准备

官方文档提供的提前准备

Distribution Base Requirements Remote - SSH Requirements Notes
General kernel >= 4.18, glibc >=2.28, libstdc++ >= 3.4.25, tar OpenSSH server, bash, and curl or wget Run ldd --version to check the glibc version. Run strings /usr/lib64/libstdc++.so.6 | grep GLIBCXX to see if libstdc++ 3.4.25 is available.
General for Arm32 libatomic1 No additional requirements.
Ubuntu 20.04+, Debian 10+, Raspberry Pi OS Buster/10+ and downstream distributions libc6 libstdc++6 ca-certificates tar openssh-server bash and curl or wget Requires kernel >= 4.18, glibc >= 2.28, libstdc++ >= 3.4.25.
RHEL / CentOS 8+ glibc libgcc libstdc++ ca-certificates tar openssh-server bash and curl or wget Requires kernel >= 4.18, glibc >= 2.28, libstdc++ >= 3.4.25.
Alpine Linux 3.16+ musl libgcc libstdc++. musl >= 1.2.3, glibc not required. Not yet supported. Supported in Dev Containers and WSL. Extensions installed in the container may not work due to glibc dependencies in extension native code.
openSUSE Leap / SUSE Linux Enterprise 15+ glibc libgcc_s1 libstdc++6 ca-certificates gzip tar curl or wget Requires kernel >= 4.18, glibc, libstdc++6

针对openEuler的准备

缺少tar 解压工具

检查是否缺少tar解压工具

1
2
[root@localhost ~]# tar
-bash: tar:未找到命令

使用以下命令安装tar

1
dnf install tar

端口转发未开启

  1. 我们查看sshd 服务配置文件
    1
    [root@localhost ~]# cat /etc/ssh/sshd_config
  2. 找到以下两个配置
    1
    2
    AllowTcpForwarding no
    AllowAgentForwarding no
  3. 将 ‘ no ‘改为’ yes ‘
    1
    2
    AllowTcpForwarding yes
    AllowAgentForwarding yes
  4. 重启sshd 服务
    1
    systemctl restart sshd.service
CATALOG
  1. 1. 本地主机准备
  2. 2. 服务器准备
    1. 2.1. 官方文档提供的提前准备
    2. 2.2. 针对openEuler的准备
      1. 2.2.1. 缺少tar 解压工具
      2. 2.2.2. 端口转发未开启