Error details:
EBS 12.2 Weblogic :The Server is not able to service this request: [Socket:000445]Connection rejected, filter blocked Socket, weblogic.security.net.FilterException: [Security:090220]rule 8
Check:
check below entries in $EBS_DOMAIN_HOME/config/config.xml
cd $EBS_DOMAIN_HOME/config
cp config.xml config.xml.orig
vi config.xml
<connection-filter-rule>ebsprod * * allow</connection-filter-rule>
<connection-filter-rule>0.0.0.0/0 * * deny</connection-filter-rule>
If you find an entry with deny then replace it with allow:
<connection-filter-rule>0.0.0.0/0 * * allow</connection-filter-rule>
Restart services including admin server and test the URL.

0 Comments