- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试使用 PHP socket_connect() 函数连接用 C 编写的目标,但出现以下错误:
警告:socket_connect():无法连接[10061]:无法建立连接,因为目标机器主动拒绝。
这是我正在运行的代码:
$service_port = 1234;
$address = "xx.xxx.xx.xxx";
$socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
if ($socket === false) {
echo "socket_create() failed: reason: " . socket_strerror(socket_last_error()) . "\n";
} else {
echo "OK.\n<br>";
}
echo "Attempting to connect to '$address' on port '$service_port'...\n";
$result = socket_connect($socket, $address, $service_port);
if ($result === false) {
echo "socket_connect() failed.\nReason: ($result) " . socket_strerror(socket_last_error($socket)) . "\n";
} else {
echo "OK.\n<br>";
}
我在 Windows 7 中使用带有 PHP 5.4 的 xampp 服务器并且我禁用了防火墙设置。我仍然收到相同的拒绝错误。
请帮我解决这个问题。 [过去 3 天我一直在与这个问题作斗争]
提前致谢。
最佳答案
如果您在同一台机器上运行客户端和服务器代码,那么您必须将它们混合起来,如下例所示:
<?php
//client
$host = "localhost";
$port = 80;
$message = "Hello Server";
echo "Message To server :".$message;
// create socket
$socket1 = socket_create(AF_INET, SOCK_STREAM, 0) or die("Could not create socket\n");
// connect to server
$result1 = socket_connect($socket1, $host, $port) or die("Could not connect to server\n");
//server
// don't timeout!
set_time_limit(100);
// create socket
$socket2 = socket_create(AF_INET, SOCK_STREAM, 0) or die("Could not create socket\n");
// bind socket to port
$result2 = socket_bind($socket2, $host, $port) or die("Could not bind to socket\n");
// start listening for connections
$result2 = socket_listen($socket2, 3) or die("Could not set up socket listener\n");
// accept incoming connections
// spawn another socket to handle communication
$spawn = socket_accept($socket2) or die("Could not accept incoming connection\n");
// send string to server
socket_write($socket1, $message, strlen($message)) or die("Could not send data to server\n");
// read client input
$input = socket_read($spawn, 1024) or die("Could not read input\n");
// clean up input string
$input = trim($input);
echo "Client Message : ".$input;
// reverse client input and send back
$output = strrev($input) . "\n";
socket_write($spawn, $output, strlen ($output)) or die("Could not write output\n");
$result1 = socket_read ($socket1, 1024) or die("Could not read server response\n");
echo "Reply From Server :".$result1;
socket_close($spawn);
socket_close($socket2);
socket_close($socket1);
?>
关于php - socket_connect() : unable to connect [10061] - target machine actively refused it,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17697574/
// Create a new socket $sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP); // An example list of I
我正在使用套接字将数据发送到可能没有响应的服务器。所以我试图通过在 SO 中使用此解决方案来定义超时。 Make PHP socket_connect timeout socket_set_optio
好的,我已经有一个运行良好的 php 服务器,它使用我编写的这个小函数打开了一个 AF_UNIX socet。像这样调用 $IPC_connector = socket_create_IPC('/tm
我想将数据从我的 PHP 服务器 发送到我在 NodeJS 上运行的 Socket.IO 服务器。 在本地主机上一切正常 (使用 http://) 但是现在,服务器正在安全连接的网络上运行 https
我正在尝试在 Linux 机器上连接到 PHP 中的 Unix 套接字。它是一个微 Controller ,所以我决定使用 lighttpd 来启动和运行服务器。我在连接到另一个应用程序正在监听的套接
我创建了一个小应用程序来分析网络连接。它从浏览器运行并连接到本地 PHP/Apache 服务器。然后它要求 PHP 通过原始套接字发送 ping 数据包。问题是,如果我尝试 ping 的主机不存在或不
我用 C++ 编写了一个简单的套接字服务器,我将使用它在其他几个守护进程之间进行通信。服务器本身很好;它正在监听端口 3000 上的 TCP 连接。netstat 显示以下内容: Proto Recv
我正在使用 phpmailer 发送电子邮件,当我需要连接到远程邮件服务器时,在我的主机上发送时遇到了一些问题。 我从技术支持那里得到信息,我需要将我的服务器 ip 与远程服务器绑定(bind)。 这
我正在尝试将一些代码从 perl 转换为 php。 Perl 代码如下所示: 我的 $handle = Connect($port, $host); 我正在尝试使用套接字在 php 中做同样的事情。我
我有这样的代码: if (!socket_connect($this->sock, $this->host, $this->port)) { 其中 $this->host 是一个主机名,它被解析为 2
我有一个使用套接字的 php 脚本,当我在本地主机 (XAMPP) 上测试它时,我的代码运行良好。但是在我将相同的代码上传到我的虚拟主机后,它无法正常工作。详细地说,它加载了几分钟,最后给出了这些错误
我的操作系统:Centos 7,使用 laravel 5.8,php 7.1: 我在以下位置使用 Clamav.php:https://github.com/kissit/php-clamav-sca
我正在尝试使用 PHP socket_connect() 函数连接用 C 编写的目标,但出现以下错误: 警告:socket_connect():无法连接[10061]:无法建立连接,因为目标机器主动拒
我是一名优秀的程序员,十分优秀!