提示-bash: telnet:localhost command not found 的解决方法

时间:2024-04-07 08:03:24

提示-bash: telnet:localhost command not found 的解决方法

原因:没有安装telnet服务

解决办法:

  • 修改配置文件
  • 安装服务

1.进到/etc/yum.repos.d目录下,编辑CentOS-Base.repo文件,注意这几个baseurl一定要配置好!

提示-bash: telnet:localhost command not found 的解决方法

提示-bash: telnet:localhost command not found 的解决方法

2.先查看telnet服务情况: yum list telnet*(默认会自动检查,待检查进行完)

提示-bash: telnet:localhost command not found 的解决方法

3.安装命令:yum install telnet-server.x86_64 

提示-bash: telnet:localhost command not found 的解决方法 提示-bash: telnet:localhost command not found 的解决方法

4.继续安装telnet.x86_64

提示-bash: telnet:localhost command not found 的解决方法

5.如果进行不下去,就使用命令:yum install telnet.*  

提示-bash: telnet:localhost command not found 的解决方法 

提示-bash: telnet:localhost command not found 的解决方法

 6.测试是否安装成功:telnet localhost 44444,正在连接,证明安装telnet服务成功!提示-bash: telnet:localhost command not found 的解决方法

7.如果还是无法连接telnet,需要修改/etc/xinetd.d/telnet文件,将disable=yes行前加#注释掉,或者把yes改为no

[[email protected] flume]# vi /etc/xinetd.d/telnet

提示-bash: telnet:localhost command not found 的解决方法

8.验证消息监听,输入两次内容,回车。

提示-bash: telnet:localhost command not found 的解决方法

提示-bash: telnet:localhost command not found 的解决方法 

可以看到监听到了消息。


可能用到命令:

service xinetd restart  重启telnet的xinetd服务