vscode连接服务器报错Bad permissions.

问题

起因是vscode连接我的云服务器报错

] Resolver error: Error: 已取消连接 at g.Canceled (c:\Users\19733\.vscode\extensions\ms-vscode-remote.remote-ssh-0.112.0\out\extension.js:2:500114) at c:\Users\19733\.vscode\extensions\ms-vscode-remote.remote-ssh-0.112.0\out\extension.js:2:580668 at async t.withShowDetailsEvent (c:\Users\19733\.vscode\extensions\ms-vscode-remote.remote-ssh-0.112.0\out\extension.js:2:584036) at async k (c:\Users\19733\.vscode\extensions\ms-vscode-remote.remote-ssh-0.112.0\out\extension.js:2:577649) at async t.resolve (c:\Users\19733\.vscode\extensions\ms-vscode-remote.remote-ssh-0.112.0\out\extension.js:2:581407) at async c:\Users\19733\.vscode\extensions\ms-vscode-remote.remote-ssh-0.112.0\out\extension.js:2:848023

没有提示输入密码

公钥在服务器配置了(公钥内容添加到远程服务器的 ~/.ssh/authorized_keys 文件)

但是还报错xxxx>ssh xxx Bad permissions. Try removing permissions for user: \\Everyone (S-1-1-0) on file C:/Users/.ssh/config. Bad owner or permissions on C:\\Users\/.ssh/config

解决方案

步骤 1:检查并修改文件权限

你需要确保只有当前用户对 C:\Users\.ssh\config 文件有读写权限。以下是具体步骤:

1.1 打开 PowerShell 或命令提示符

Win + X,选择 Windows PowerShell命令提示符

1.2 修改文件权限

使用 icacls 命令修改文件权限:

icacls C:\Users\.ssh\config /inheritance:r icacls C:\Users\19733\.ssh\config /grant:r %username%:F

解释:

  • icacls C:\Users\19733\.ssh\config /inheritance:r:移除文件的继承权限。
  • icacls C:\Users\19733\.ssh\config /grant:r %username%:F:授予当前用户对文件的完全控制权限。

步骤 2:验证文件权限

你可以使用以下命令验证文件权限是否正确:

icacls C:\Users\.ssh\config

输出应该类似于

C:\Users\.ssh\config NT AUTHORITY\SYSTEM:(I)(F) BUILTIN\Administrators:(I)(F) YOUR_USERNAME:(F)

确保只有 SYSTEMAdministrators 和你的用户名有权限。

步骤 3:重新尝试连接

修改权限后,重新尝试使用 SSH 连接:

ssh xxx

相关推荐
CZIDC2 天前
win11 系统环境下 新安装 WSL ubuntu + ssh + gnome 桌面环境
数据库·ubuntu·ssh
wangjun51592 天前
jenkins 参数化发布到服务器 publish over ssh、label、Parameterized publishing
服务器·ssh·jenkins
只是橘色仍温柔2 天前
xshell可以ssh连接,但vscode不行
运维·vscode·ssh
may_一一3 天前
终端SSH连接工具SecureCRT安装和连接Linux
运维·服务器·ssh
plmm烟酒僧3 天前
使用 Tmux 在断开SSH连接后,保持会话的生命周期
运维·ssh·tmux·分离会话
Vacancy空白4 天前
【Ubuntu常用命令】
linux·运维·ubuntu·ssh
漫天转悠4 天前
本地Git仓库SSH同步到Gitee(码云)仓库的完整指南(附:SourceTree同步仓库)
git·gitee·ssh
XMYX-04 天前
如何加强 SSH 安全:内网和专用网络环境下的防护策略
网络·安全·ssh
松树戈4 天前
windows通用网线连接ubuntu实现ssh登录、桌面控制、文件共享【实操&常见问题解决思路】
linux·windows·ubuntu·ssh
云兮杜康6 天前
使用SSH去git push分支到github
git·ssh·github