PHP socket_create / socket_bind 与 Unix 域套接字 - 错误地址已在使用中

发布于 2025-01-09 08:43:09 字数 529 浏览 0 评论 0原文

我发布这个是因为我花了几个小时调试这个。

如果您将 socket_create / socket_bind 与 Unix 域套接字一起使用,那么最后使用 socket_close 是不够的。第二次运行脚本时,您将收到“地址已在使用中”。 对用于 Unix 域套接字的文件调用 unlink,最好是在开始创建套接字之前。

<?php

$socket_file = "./test.sock";

if (file_exists($socket_file))
        unlink($socket_file);
# optional file lock
$socket = socket_create(AF_UNIX, SOCK_STREAM, 0);
# ... socket_set_option ...
socket_bind($socket, $socket_file);
# ...
socket_close($socket);
# optional : release lock
unlink($socket_file);

?>

问候

I am posting this as I've spent a few hours debugging this.

If you use socket_create / socket_bind with Unix domain sockets, then using socket_close at the end is not sufficient. You will get "address already in use" the second time you run your script.
Call unlink on the file that is used for Unix domain sockets, preferably before you start to create the socket.

<?php

$socket_file = "./test.sock";

if (file_exists($socket_file))
        unlink($socket_file);
# optional file lock
$socket = socket_create(AF_UNIX, SOCK_STREAM, 0);
# ... socket_set_option ...
socket_bind($socket, $socket_file);
# ...
socket_close($socket);
# optional : release lock
unlink($socket_file);

?>

Regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帥小哥 2025-01-16 08:43:09

$socket_file = "./test.sock";

如果(文件存在($socket_file))
取消链接($socket_file);

$socket_file = "./test.sock";

if (file_exists($socket_file))
unlink($socket_file);

甲如呢乙后呢 2025-01-16 08:43:09

您可以使用 socket_set_option() 来指定您要重用< /strong> 地址和端口:

socket_set_option($socket, SOL_SOCKET, SO_REUSEADDR, 1);

请参阅列表选项

You can use socket_set_option() to specify that you want to reuse address and port:

socket_set_option($socket, SOL_SOCKET, SO_REUSEADDR, 1);

See the list of options.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文