php cURL to localhost在开放端口

时间:2017-10-10 16:57:42

标签: php curl tcp centos firewalld

当我尝试使用php cURL库向端口4321上的localhost发出cURL请求时,我收到了一个权限被拒绝错误。对于之前碰到这个问题的人来说,这对于希望非常简单或明显。

我能够从局域网上的另一个系统向生产服务器发出相同的cURL请求。例如,如果在局域网上的另一个系统上,我使用下面$host='http://192.168.1.100:4321'的函数发出请求,那么一切都可以正常工作。如果我在$host='http://localhost:4321'$host='http://127.0.0.1:4321'$host='::1:4321'的系统上运行,那么我会收到“权限被拒绝”的cURL错误

我为非常简单的请求编写的函数是:

function makeRequest($host,$data){
    $ch = curl_init();
    curl_setopt($ch,CURLOPT_URL, $host);
    curl_setopt($ch,CURLOPT_POSTFIELDS, $data);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    $result = json_decode(curl_exec($ch),true);
    if(!empty(curl_error($ch))){
        $result = print_r(curl_error($ch).' - '.$host);
    }
    curl_close($ch);
    return $result;
}

该系统是centos 7服务器。正在运行firewall-cmd --list-all会显示我的开放端口

ports: 443/tcp 80/tcp 4321/tcp

如果您有任何想法,或者需要我检查设置,请不要犹豫。

修改 hosts文件看起来像

127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4

EDIT2

当我对同一个端口使用命令行卷曲时,一切都会回来。

 /]$ curl -v localhost:4321
* About to connect() to localhost port 4321 (#0)
*   Trying ::1...
* Connected to localhost (::1) port 4321 (#0)
> GET / HTTP/1.1
> User-Agent: curl/7.29.0
> Host: localhost:4321
> Accept: */*
>
< HTTP/1.1 200 OK
< Accept-Ranges: bytes
< Cache-Control: no-cache, no-store, must-revalidate
< Content-Length: 774....

1 个答案:

答案 0 :(得分:5)

我找到了问题的答案: Getting permission denied while Posting xml using Curl?

问题是SELinux,解决方案是运行

user@host /]$ sudo setsebool httpd_can_network_connect=1

我可以使用php cURL库访问世界上的其他所有网站,但不能访问其他端口上的localhost,而我可以从命令行cURL访问localhost,这对我没有意义。