PHP socket_create / socket_bind 与 Unix 域套接字 - 错误地址已在使用中
我发布这个是因为我花了几个小时调试这个。
如果您将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
$socket_file = "./test.sock";
如果(文件存在($socket_file))
取消链接($socket_file);
$socket_file = "./test.sock";
if (file_exists($socket_file))
unlink($socket_file);
您可以使用
socket_set_option()
来指定您要重用< /strong> 地址和端口:请参阅列表选项。
You can use
socket_set_option()
to specify that you want to reuse address and port:See the list of options.