我的情况:
telnet步骤:
xx和yy是标识机器的数字
现在让我们从php一侧开始,我有我的index.php,但是当我执行套接字绑定时,它给我返回了一个错误(在代码下报告),并且有关代码,这来自:http://php.net/manual/en/sockets.examples.php及其第一个示例,我还https://www.codeproject.com/Tips/418814/Socket-Programming-in-PHP阅读并尝试了此解决方案,该解决方案使用2个php文件,在两种情况下,我都遇到相同的错误...
<?php
error_reporting(E_ALL);
/* Allow the script to hang around waiting for connections. */
set_time_limit(0);
/* Turn on implicit output flushing so we see what we're getting
* as it comes in. */
ob_implicit_flush();
$address = 'localhost';
$port = 4448;
if (($sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP)) === false) {
echo "socket_create() failed: reason: " . socket_strerror(socket_last_error()) . "\n";
}
if (socket_bind($sock, $address, $port) === false) {
echo "socket_bind() failed: reason: " . socket_strerror(socket_last_error($sock)) . "\n";
}
if (socket_listen($sock, 5) === false) {
echo "socket_listen() failed: reason: " . socket_strerror(socket_last_error($sock)) . "\n";
}
do {
if (($msgsock = socket_accept($sock)) === false) {
echo "socket_accept() failed: reason: " . socket_strerror(socket_last_error($sock)) . "\n";
break;
}
/* Send instructions. */
$msg = "GET xx,yy";
socket_write($msgsock, $msg, strlen($msg));
do {
if (false === ($buf = socket_read($msgsock, 2048, PHP_NORMAL_READ))) {
echo "socket_read() failed: reason: " . socket_strerror(socket_last_error($msgsock)) . "\n";
break 2;
}
if (!$buf = trim($buf)) {
continue;
}
if ($buf == 'quit') {
break;
}
if ($buf == 'shutdown') {
socket_close($msgsock);
break 2;
}
$talkback = "PHP: You said '$buf'.\n";
socket_write($msgsock, $talkback, strlen($talkback));
echo "$buf\n";
} while (true);
socket_close($msgsock);
} while (true);
socket_close($sock);
?>
这是我得到的错误:
警告:socket_bind():无法绑定地址[10013]:尝试 使其以访问权限所禁止的方式访问套接字
我已经在寻找管理员权限,我认为这没事。
其他信息:我正在使用PHP 7,我的Web服务器是Xampp软件包中的Apache。
答案 0 :(得分:0)
另一个程序可能已经在使用该端口。尝试使用其他端口。如果可行,您可以尝试使用端口查找过程并终止它。 sysinternals的此工具可能会有所帮助:https://docs.microsoft.com/en-us/sysinternals/downloads/tcpview
如果使用其他端口也失败,则可能是您的防火墙不允许绑定。尝试暂时禁用防火墙。