关于Linux访问web遇到403 Forbidden的问题

问题:
大数据平台的集群监控地址是通过一个代理(ip:port)访问,在windows环境下设置代理是可以正常访问;
但在linux环境下设置了代理却不能访问;telnet和ping代理是可以,但curl和wget却出现问题。


1)wget返回错误:

[root@SJJH-SERVER2 ~]# wget -e "http_proxy=http://ip:port" http://c9m1.ecld.com:8088/cluster
--2017-06-06 11:00:01--  http://c9m1.ecld.com:8088/cluster
正在连接 ip:port... 已连接。
已发出 Proxy 请求,正在等待回应... 403 Forbidden
2017-06-06 11:00:01 错误 403:Forbidden。

2)curl执行情况:

[root@SJJH-SERVER2 ~]#curl -x ip:port http://c9m1.ecld.com:8088/cluster

The following error was encountered while trying to retrieve the URL: http://c9m1.ecld.com:8088/cluster

Access Denied.

Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect.

Your cache administrator is webmaster.



对于该问题暂时还没找到解决办法,有遇到类似的可以一起沟通,后续找到找到解决方案更新文章。

网上查询了下,问题解决的方向,一个是和web部署的目录权限有关系;一个是和linux环境下不能执行web动态脚本有关系。


你可能感兴趣的:(Linux)