3

我已经在 Linux 2.6.34 上安装了 php 5.4.13。

我已经使用套接字制作了简单的客户端/服务器页面,但它不起作用。

它给出了权限被拒绝的错误

下面是我的php代码

if (false == ($socket = socket_create(AF_INET, SOCK_STREAM, 0)))  // create socket 
{
   $stringData= date("D M d, Y g:i A"). " socket_create() failed: reason: " . socket_strerror(socket_last_error()) . "<br>";
   echo $stringData;
}
else
{
    $timeout = array('sec'=>5,'usec'=>500000);
    socket_set_option($socket,SOL_SOCKET,SO_RCVTIMEO,$timeout);

    if(false==($result = socket_connect($socket, $host, $port)))
    {
        $stringData= date("D M d, Y g:i A"). " socket_connect() failed: reason: " . socket_strerror(socket_last_error()) . "<br>";
        echo $stringData;
        socket_close($socket);
    }
    else
    {
        $stringData= date("D M d, Y g:i A"). " Socket connected succefully <br>";
        echo $stringData;

        if(false==(socket_write($socket, $command, strlen($command))))
        {
            $stringData= date("D M d, Y g:i A"). " socket_write() failed: reason: " . socket_strerror(socket_last_error()) . "<br>";
            echo $stringData;
            socket_close($socket);
        }
        else
        {
            if(false===($cmd = socket_read ($socket, 65536)))
            {
                //10060 for windows and 11 for linux

              if(10060!=socket_last_error() && 11!=socket_last_error())
              {
                $stringData= date("D M d, Y g:i A"). " socket_read() failed: reason: " . socket_strerror(socket_last_error()) . "<br>";
                echo $stringData;
                socket_close($socket);

              }
              switch(socket_select($r = array($socket), $w = array($socket), $f = array($socket), 5))
              {
                       case 2:
                               $refused=1;  
                               break;
              }
              if($refused==1)
              {
                $stringData= date("D M d, Y g:i A"). " socket_read() failed: reason: Connection Refused <br>";
                $ourFileHandle = fopen(SOCKET_LOG, 'a');
                echo $stringData;
                socket_close($socket);

              }
            }
            else
            {
                echo "<pre>".html_entity_decode(print_r($cmd,true))."</pre>";
            }
        }
    }
}

上面的代码在命令提示符下工作正常,但是当从任何浏览器打开页面时,它会给出错误权限被拒绝。

从终端运行 php 的命令:/usr/local/rootfs/php5/bin/php /www/socket_client.php

4

4 回答 4

13

检查参数“ safe_mode ”的php.ini设置。它应该是“关闭”。

另一个问题可能是由阻止您的 mod_php(apache 进程)通过套接字连接的“selinux”引起的。在这种情况下:

# check if it's enabled:
/usr/sbin/sestatus -v
to add the connecting rule:
setsebool httpd_can_network_connect=1

如果要完全禁用它:

setenforce 0

此外,出于调试原因,请禁用 apache/PHP 上的任何安全模块。例如,如果Suhosin正在运行,请尝试禁用它。

于 2013-06-12T11:16:27.413 回答
0

这个问题似乎与 PHP 无关,但与 Apache Web 服务器(httpd)的权限有关。

我试图修复权限问题,但尚未成功。

如果我在 httpd.conf 中禁用用户切换,我的(Unix 套接字)连接工作。然而,这只是一种快速的开发解决方法,并不是最终的解决方案,因为整个 httpd 以这种方式以 root 身份运行。

#User _www
#Group _www
于 2015-05-01T13:13:35.837 回答
0

就我而言,.sock 文件没有足够的权限供运行 php (apache) 的用户使用。

更容易修复。

于 2022-02-02T00:19:53.887 回答
0

我有一个类似的问题:

   <?php
   fsockopen('udp://192.168.1.255', 7, $errno, $errstr, 2);
   ?>

警告: fsockopen(): 无法连接到第 1 行 /var/www/html/udp.php 中的 udp://192.168.1.255:7(权限被拒绝)

致命错误:未捕获的异常:无法打开 UDP 套接字:权限被拒绝

php.ini 如果服务器让你改变这个配置:

allow_url_fopen = On      // Was On
allow_url_include = Off   // On Didn't change the problem

终端检查防火墙:

ufw status
Status: Inaktiv

/usr/sbin/sestatus -v
SELinux status:        disabled

解决方案:

不允许广播到192.168.1.255 ,我改成对应的IP地址,即192.168.1.24

或者

默认情况下,对袜子禁用广播。socket_set_option 命令启用广播消息。

PHP 官方网站上的以下脚本:

<?php
# Wake on LAN - (c) HotKey (at SPR dot AT), upgraded by Murzik <tomurzik@inbox.ru>

flush();

function WakeOnLan($addr, $mac)
{
$addr_byte = explode(':', $mac);
$hw_addr = '';

for ($a=0; $a < 6; $a++) $hw_addr .= chr(hexdec($addr_byte[$a]));

$msg = chr(255).chr(255).chr(255).chr(255).chr(255).chr(255);

for ($a = 1; $a <= 16; $a++) $msg .= $hw_addr;

// send it to the broadcast address using UDP
// SQL_BROADCAST option isn't help!!
$s = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);
if ($s == false)
{
echo "Error creating socket!\n";
echo "Error code is '".socket_last_error($s)."' - " . socket_strerror(socket_last_error($s));
}
else
{
// setting a broadcast option to socket:
$opt_ret = socket_set_option($s, 1, 6, TRUE);
if($opt_ret < 0)
{
echo "setsockopt() failed, error: " . strerror($opt_ret) . "\n";
}
$e = socket_sendto($s, $msg, strlen($msg), 0, $addr, 2050);
echo $e;
socket_close($s);
echo "Magic Packet sent (".$e.") to ".$addr.", MAC=".$mac;
}
}

#WakeOnLan('yourIPorDomain.dyndns.org', 'your:MAC:address');
#WakeOnLan('192.168.0.2', '00:30:84:2A:90:42');
#WakeOnLan('192.168.1.2', '00:05:1C:10:04:05');

//if you have switch or other routing devices in LAN, sendign to
// the local IP isn't helps! you need send to the broadcast address like this:
WakeOnLan('192.168.0.255', 'xx:xx:xx:xx:xx:xx'); 

某人

附加信息:

https://www.php.net/manual/de/function.fsockopen.php

fsockopen() 在 PHP.ini 中启用它

https://serverfault.com/questions/371000/how-to-enable-fsockopen-function-in-php

https://ubuntuforums.org/showthread.php?t=919407

https://forum.qnap.com/viewtopic.php?t=39154

于 2021-05-02T13:30:29.537 回答