1

我有一个 apache 服务器并监听端口 8000 和 80

我使用下面的 php 函数来创建一个 web socket

private function createSocket($host,$port)
{
    if( ($this->master=socket_create(AF_INET,SOCK_STREAM,SOL_TCP)) < 0 )
    {
        die("socket_create() failed, reason: ".socket_strerror($this->master));
    }

    self::console("Socket {$this->master} created.");

    socket_set_option($this->master,SOL_SOCKET,SO_REUSEADDR,1);
    #socket_set_option($master,SOL_SOCKET,SO_KEEPALIVE,1);

    if( ($ret=socket_bind($this->master,$host,$port)) < 0 )
    {
        die("socket_bind() failed, reason: ".socket_strerror($ret));
    }

    self::console("Socket bound to {$host}:{$port}.");

    if( ($ret=socket_listen($this->master,5)) < 0 )
    {
        die("socket_listen() failed, reason: ".socket_strerror($ret));
    }

    self::console('Start listening on Socket.');

    $this->allsockets[] = $this->master;
}

假设 $host 是 127.0.0.1 并且 $port 是 8000

当我转到 shell 控制台并启动套接字服务器时,它说警告:socket_bind():无法绑定地址 [98]:地址已在使用中

当我删除 $port 时,它没有显示错误,但套接字服务器一直在监听并且没有响应

问题是什么?

4

1 回答 1

1

警告:socket_bind():无法绑定地址 [98]:地址已在使用中

这意味着您的服务器已经在使用您选择的端口。您必须选择另一个端口,直到找到一个未使用的端口。

于 2012-12-04T08:04:55.973 回答