zoukankan      html  css  js  c++  java
  • Mac 中ssh localhost连接失败的处理

    在Mac电脑上安装了一些东西后,结果ssh连不上了,ping ip地址又可以。使用ssh localhost命令老是提示Connection closed by ::1。使用ssh -v localhost,提示:

    OpenSSH_6.9p1, LibreSSL 2.1.8
    debug1: Reading configuration data /etc/ssh/ssh_config
    debug1: /etc/ssh/ssh_config line 21: Applying options for *
    debug1: Connecting to localhost [::1] port 22.
    debug1: Connection established.
    debug1: key_load_public: No such file or directory
    debug1: identity file /Users/macbookpro/.ssh/id_rsa type -1
    debug1: key_load_public: No such file or directory
    debug1: identity file /Users/macbookpro/.ssh/id_rsa-cert type -1
    debug1: key_load_public: No such file or directory
    debug1: identity file /Users/macbookpro/.ssh/id_dsa type -1
    debug1: key_load_public: No such file or directory
    debug1: identity file /Users/macbookpro/.ssh/id_dsa-cert type -1
    debug1: key_load_public: No such file or directory
    debug1: identity file /Users/macbookpro/.ssh/id_ecdsa type -1
    debug1: key_load_public: No such file or directory
    debug1: identity file /Users/macbookpro/.ssh/id_ecdsa-cert type -1
    debug1: key_load_public: No such file or directory
    debug1: identity file /Users/macbookpro/.ssh/id_ed25519 type -1
    debug1: key_load_public: No such file or directory
    debug1: identity file /Users/macbookpro/.ssh/id_ed25519-cert type -1
    debug1: Enabling compatibility mode for protocol 2.0
    debug1: Local version string SSH-2.0-OpenSSH_6.9
    debug1: Remote protocol version 2.0, remote software version OpenSSH_6.9
    debug1: match: OpenSSH_6.9 pat OpenSSH* compat 0x04000000
    debug1: Authenticating to localhost:22 as 'macbookpro'
    debug1: SSH2_MSG_KEXINIT sent
    Connection closed by ::1

    总是链接不上,只能去看日志,结果提示

    error: Permissions 0644 for '/etc/ssh/ssh_host_dsa_key' are too open. : 31 time(s)
    error: Permissions 0644 for '/etc/ssh/ssh_host_rsa_key' are too open. : 31 time(s)
    error: bad permissions: ignore key: /etc/ssh/ssh_host_dsa_key : 31 time(s)
    error: It is recommended that your private key files are NOT accessible by others. : 62 time(s)
    error: bad permissions: ignore key: /etc/ssh/ssh_host_rsa_key : 31 time(s)
    error writing /proc/self/oom_adj: Operation not permitted : 54 time(s)

    然后在终端使用命令:'sudo chmod 600 /etc/ssh/ssh_host_?sa_key',终于可以连上了。这里记录一下,防止以后遇到同样的问题。

  • 相关阅读:
    安装mysql Install/Remove of the Service Denied!错误的解决办法
    Oracle新建Schema
    TOMCAT虚拟路径配置
    Java的基本数据类型与转换
    _web基础_servlet基础
    布局的嵌套
    使用BootStrap网格布局进行一次演示
    BootStrap导入及其使用
    路由
    AngularJs MVC 详解
  • 原文地址:https://www.cnblogs.com/zjmsky/p/8279956.html
Copyright © 2011-2022 走看看