在阿里云 ECS 上配置 SSH
生活随笔
收集整理的這篇文章主要介紹了
在阿里云 ECS 上配置 SSH
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
我在阿里云 ECS 上執(zhí)行 git 命令,遇到如下錯(cuò)誤:
PLease make sure you have the correct access rights
and the repository exists.
我的 github SSH keys 區(qū)域,去年已經(jīng)維護(hù)了對(duì)應(yīng)的 SSH keys:
/root/.ssh
將本地的 id_rsa 文件拷貝到阿里云 ECS,執(zhí)行命令行:
ssh -T git@github.com
報(bào)錯(cuò):
It is required that your private key files are NOT accessible by others.This private key wiut be ignored.
Load key “/root/.ssh/id_rsa”: bad permissions
git@github. com: Permission denied (publickey)
執(zhí)行如下命令行,修改 id_rsa 文件的訪問(wèn)權(quán)限:
chmod 400 ~/.ssh/id_rsa
執(zhí)行成功。
更多Jerry的原創(chuàng)文章,盡在:“汪子熙”:
總結(jié)
以上是生活随笔為你收集整理的在阿里云 ECS 上配置 SSH的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 修改 Angular Component
- 下一篇: 什么是 TypeScript 的 Mod