-bash: ssh: command not found的完美解决

时间:2024-11-16 07:46:54

-bash: ssh: command not found 

解决方法:

命令安装SSH:

 yum -y install openssh-clients

 具体命令如下:

  1. [root@node01 .ssh]# ssh node01
  2. -bash: ssh: command not found
  3. [root@node01 .ssh]# rpm -qa | grep openssh
  4. openssh-5.3p1-111.el6.i686
  5. openssh-server-5.3p1-111.el6.i686
  6. [root@node01 .ssh]# yum -y install openssh-clients
  7. Loaded plugins: fastestmirror
  8. Setting up Install Process
  9. Loading mirror speeds from cached hostfile

验证ssh是否可用

  1. Dependency Updated:
  2. 686 0:5.3p1-124.el6_10 686 0:5.3p1-124.el6_10
  3. Complete!
  4. [root@node01 .ssh]# ssh node01
  5. The authenticity of host 'node01 (192.168.136.111)' can't be established.
  6. RSA key fingerprint is 4b:88:17:42:f5:2b:dc:47:76:c0:1b:f9:5f:2f:0b:c1.
  7. Are you sure you want to continue connecting (yes/no)? yes
  8. Warning: Permanently added 'node01,192.168.136.111' (RSA) to the list of known hosts.
  9. Last login: Fri Mar 13 23:38:46 2020 from 192.168.136.1
  10. [root@node01 ~]#

完毕~~~