连接拒绝了telnet localhost 8080

时间:2015-12-10 15:22:17

标签: centos telnet

我正在运行CentOS 7计算机,当我尝试telnet localhost 8080时,我收到以下消息

Trying ::1...
Telnet: connect to address ::1: Connection refused
Trying 127.0.0.1...
Telnet: conenct to address 127.0.0.1: Connection refused

我已将8080 / tcp添加到IP表并打开了端口。什么阻止它?

1 个答案:

答案 0 :(得分:4)

这很简单:端口8080没有打开,就像@Esse告诉你的那样。

您也可以检查与echo的连接:

var a_interval_function = function(){
    var counter = 1;
    var interval = setInterval(function(){
        if(counter === 5){
            clearInterval(interval);
        }

        // run the function when the counter is 3
        if(counter === 3 && testFunction()){
            a_function_should_be_runned();
        }   

        counter++;
    }, 500);

    return interval;
}

function testFunction(){
     if(KeyboardNinja == 'awesome'){
         return true;
     } else {
         return false;
     }


}

您可以使用netstat列出已打开的端口:

echo OK > /dev/tcp/localhost/8080
echo $?

编辑:

您可以尝试自行打开端口来测试端口是否未打开:

netstat -tulpn | grep 8080