'ORA-24244' error while granting 'resolve' privilege on ACE
(Doc ID 2706038.1)
Last updated on JULY 20, 2024
Applies to:
Oracle Database - Enterprise Edition - Version 12.1.0.2 and laterInformation in this document applies to any platform.
Symptoms
select distinct HOST||' ['||LOWER_PORT||'-'||UPPER_PORT||'] ' hst , PRINCIPAL ,substr(PRIVILEGE,1,10) priv from DBA_HOST_ACES;
HST PRINCIPAL PRIV
------------------------------------------------------------
h1.oracle.com [8080-8080] APPS CONNECT
BEGIN
DBMS_NETWORK_ACL_ADMIN.append_host_ace (
host => 'h1.oracle.com',
lower_port => 8080,
upper_port => 8080,
ace => xs$ace_type(privilege_list => xs$name_list('RESOLVE'),
principal_name => 'APPS' ,
principal_type => xs_acl.ptype_db));
end;
/
BEGIN
*
ERROR at line 1:
ORA-24244: invalid host or port for access control list (ACL) assignment
ORA-06512: at "SYS.DBMS_NETWORK_ACL_ADMIN", line 1132
ORA-06512: at line 2
Cause
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Symptoms |
Cause |
Solution |