[root@node01 .ssh]# ssh-copy-id node01 /usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub" /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed /usr/bin/ssh-copy-id: ERROR: ssh: connect to host node01 port 22: Connection refused
时间: 2023-09-08 21:11:11 浏览: 280
这是一个 SSH 连接失败的错误信息,可能是因为 node01 主机的 SSH 服务没有开启或者端口号不是 22。你需要先检查 node01 主机的 SSH 服务是否开启,以及 SSH 端口号是否正确。如果 SSH 服务没有开启,你需要先启动 SSH 服务。如果端口号不是 22,你需要在 ssh-copy-id 命令中指定正确的端口号。
相关问题
Usage: grep [OPTION]... PATTERN [FILE]... Try 'grep --help' for more information. Usage: grep [OPTION]... PATTERN [FILE]... Try 'grep --help' for more information. Invalid number of arguments. sed: -e expression #2, char 0: no previous regular expression spawn ssh-copy-id -i /root/.ssh/id_rsa /usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub" /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed /usr/bin/ssh-copy-id: ERROR: ssh: Could not resolve hostname /root/.ssh/id_rsa: Name or service not known Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile Package chrony-3.2-2.el7.x86_64 already installed and latest version Nothing to do
这是一些命令行的输出,其中包括了 `grep`、`sed` 和 `ssh-copy-id` 等命令。`grep` 是用来搜索文本的命令,`sed` 是用来编辑文本的命令,`ssh-copy-id` 是用来将 SSH 公钥复制到远程主机上的命令。其中出现了一些错误,比如 `Invalid number of arguments`、`Could not resolve hostname` 等,需要进一步排查和处理。最后还有一些提示,比如 `Package chrony-3.2-2.el7.x86_64 already installed and latest version`,表示已经安装了 chrony 包且为最新版本。
ssh-copy-id master /usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub" /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed /usr/bin/ssh-copy-id: ERROR: ssh: connect to host master port 22: Connection refused
这个错误提示表明无法连接到主机 "master" 的 22 端口,通常是因为 SSH 服务未启动或者防火墙阻止了连接。请确保目标主机的 SSH 服务已经启动并监听在默认的 22 端口上,同时检查目标主机和本地主机之间的网络连接是否正常。您可以尝试使用 telnet 命令测试主机的 22 端口是否能够连接成功。如果问题仍然存在,可以尝试使用其他方式连接目标主机,例如使用远程桌面或者 VPN 连接。
阅读全文