讨论区 » AAS-V10企业版 »
管控台访问500异常(本地防火墙类型)
【问题】:有个用户反馈访问管控台的时候,抛500异常,日志信息如下:
[2024-09-25T17:44:56] [] [SEVERE] [] [com.apusic.aas.admingui] [tid: _ThreadID=68 _ThreadName=ApusicLogManager] [timeMillis: 1727257496357] [levelValue: 1000] [[
java.net.ConnectException: Connection timed out (Connection timed out);
java.net.ConnectException: Connection timed out (Connection timed out);
restRequest: endpoint=https://localhost:6848/management/domain/anonymous-user-enabled
attrs={}
method=GET]]
【分析】:这里日志说明请求https://localhost:6848/management/domain/anonymous-user-enabled失败了,然后用ip访问这个请求是正常响应的,习惯性就没有继续进行本地localhost请求测试;
【原因】:是服务器上的iptables禁用了127.0.0.1关于6848端口的出站请求(一般不常见,拦截了localhost端口,而放行ip端口请求)-- 取消规则即可
--入站规则:是否允许,访问该服务器端口;(拒绝连接)
--出站规则:是否允许,该服务器端口响应;(连接超时)
【案例】: