本地OS: ubuntu 18
    SSH连接远程服务器时,提示如下:

    1. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    2. @ WARNING: UNPROTECTED PRIVATE KEY FILE! @
    3. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    4. Permissions 0644 for '/home/VASTAI/kevinx/.ssh/vastai_rsa' are too open.
    5. It is required that your private key files are NOT accessible by others.
    6. This private key will be ignored.
    7. Load key "/home/VASTAI/kevinx/.ssh/vastai_rsa": bad permissions
    8. git@192.168.16.6: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password).
    9. fatal: Could not read from remote repository.
    10. Please make sure you have the correct access rights
    11. and the repository exists.

    这是保存在~/.ssh目录下的私钥文件/home/VASTAI/kevinx/.ssh/vastai_rsa的访问权限太开放,修改该文件的权限为600即可,如下:

    1. cd ~/.ssh
    2. chmod 600 vastai_rsa