telnet: connect to address 192.168.2.140: Connection refused

解决方案

问题描述:
    我的redis开启后,使用telnet进行访问出现如下错误
    telnet: connect to address 192.168.2.140: Connection refused
    
解决方案
    查看redis.conf这个配置文件,将bind 127.0.0.1修改为bind 192.168.2.140,然后再使用telnet访问就没有问题
    
说明:
    当前这个问题有可能是其他原因导致,请参考更多解决方案
时间: 2024-12-10 02:53:37

telnet: connect to address 192.168.2.140: Connection refused的相关文章

centos解决bash: telnet: command not found...&& telnet: connect to address 127.0.0.1: Connection refused拒绝连接

检查telnet是否已安装: [[email protected] src]# rpm -q telnet-serverpackage telnet-server is not installed[[email protected] src]# telnet 192.168.81.129bash: telnet: command not found... rpm -qa |grep telnet 没有则安装,有跳过 yum install telnet-server -y && yum i

关于telnet: connect to address 190.168.6.6: No route to host 报错处理

尝试telnet 一个ip的一个端口,来测试端口是否通.结果: 反馈像是说这个地址不在路由表里. 这种问题.有两个处理方法 可能主机开启防火墙,做了阻挡. check iptables , 我们执行 iptables -F 清除所有防火墙规则 然后再关闭防火墙 再尝试telnet 还是报错. 那么跳到处理2 2.该地址段不在路由表内.(处理方法加入路由表) 先检查路由表,route -n 然后发现没有,那么加入の linux 加入 路由表命令 route add -net  xxx.xxx.xx

CENTOS 配置好SVN服务环境后,其他服务器无法访问 Error: Can't connect to host '192.168.1.103': 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。

CENTOS 配置好SVN服务环境后,其他服务器无法访问 根据 下面的步骤配置好服务后,使用本机可以正常 连接到 SVN 服务, 但是使用局域网的其他服务器访问时出现下面的错误, Error: Can't connect to host '192.168.1.103': 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败. 时由于防火墙配置问题, 需修改防火墙规则,或者使用下面的命令把防火墙服务关闭即可 service iptables stop 配置自动启动:把svnserv

oracle 11g RAC安装节点二执行结果错误CRS-5005: IP Address: 192.168.1.24 is already in use in the network

[[email protected] ~]# /u01/app/oraInventory/orainstRoot.sh Changing permissions of /u01/app/oraInventory. Adding read,write permissions for group. Removing read,write,execute permissions for world. Changing groupname of /u01/app/oraInventory to oins

Error, some other host already uses address 192.168.0.202错误解决方法

今天配置虚拟机网卡的时候遇到错误:Error, some other host already uses address 192.168.0.202 查了很多方法,比如:编辑 /etc/sysconfig/network-scripts/ifup-eth 后来发现局域网里面有其他机器使用了192.168.0.202 这个IP,最后把虚拟机IP改为一个局域网内没人使用的IP就OK了

redis创建集群——[ERR] Sorry, can't connect to node 192.168.X.X

创建集群或者连接时会出现错误:只能用127.0.0.1创建 这是需要修改redis.conf 把bind注释掉 protected-mode no 有些旧版本注释requirepass redis创建集群--[ERR] Sorry, can't connect to node 192.168.X.X 原文地址:https://www.cnblogs.com/helloworld6379/p/10035778.html

ssh: connect to host github.com port 22: Connection refused

假设git例如,下面的问题时,远程推送: [[email protected] learngit]$ git push -u origin master ssh: connect to host github.com port 22: Connection refused fatal: Could not read from remote repository. Please make sure you have the correct access rights and the reposit

Failed to connect to raw.githubusercontent.com port 443: Connection refused

问题:macOS安装Homebrew时总是报错(Failed to connect to raw.githubusercontent.com port 443: Connection refused) 原因:由于某些你懂的因素,导致GitHub的raw.githubusercontent.com域名解析被污染了. 解决办法:通过修改hosts解决此问题. 查询真实IP 在https://www.ipaddress.com/查询raw.githubusercontent.com的真实IP. 修改h

curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused

安装brew显示:curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused 此时,我是在虚拟环境中安装的,使用网上的教程没有解决: 后来我退出了虚拟环境: ok,解决了 原文地址:https://www.cnblogs.com/Zhao159461/p/12591374.html