ORA-24247 error
Hello,
I have the following problem after installing Oracle 11g DB:
ORA-24247: network access denied by access control list (ACL)
ORA-06512: at "SYS.UTL_TCP", line 17
ORA-06512: at "SYS.UTL_TCP", line 246
ORA-06512: at "SYS.UTL_SMTP", line 115
ORA-06512: at "SYS.UTL_SMTP", line 138
ORA-06512: at "ADMIN.SEND_EMAIL", line 9
ORA-06512: at "ADMIN.TRACKER_UPDATE", line 25
ORA-04088: error during execution of trigger 'ADMIN.TRACKER_UPDATE'
ORA-06512: at "SYS.UTL_TCP", line 17
ORA-06512: at "SYS.UTL_TCP", line 246
ORA-06512: at "SYS.UTL_SMTP", line 115
ORA-06512: at "SYS.UTL_SMTP", line 138
ORA-06512: at "ADMIN.SEND_EMAIL", line 9
ORA-06512: at "ADMIN.TRACKER_UPDATE", line 25
ORA-04088: error during execution of trigger 'ADMIN.TRACKER_UPDATE'
*************************************************************************************************
After reading about this error on metalink I run :
BEGIN
dbms_network_acl_admin.create_acl (
acl => 'www.xml',
description => 'heat access',
principal => 'ADMIN',
is_grant => true,
privilege => 'connect',
start_date => null,
end_date => null
dbms_network_acl_admin.create_acl (
acl => 'www.xml',
description => 'heat access',
principal => 'ADMIN',
is_grant => true,
privilege => 'connect',
start_date => null,
end_date => null
0