본문 바로가기
DB/oracle

ORA-24247: 네트워크 액세스가 ACL(액세스 제어 목록)에 의해 거부되었습니다.

by 하하IT 2021. 1. 11.

ORA-24247: 네트워크 액세스가 ACL(액세스 제어 목록)에 의해 거부되었습니다.

 

1. sys / sysadmin으로 로그인

 

2. script 실행

 

begin

DBMS_NETWORK_ACL_ADMIN.CREATE_ACL(

acl => 'network_services.xml'

, description => 'NETWORK ACL'

, principal => 'PUBLIC'

, is_grant => true

, privilege => 'connect'

);

 

DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(

acl => 'network_services.xml'

, principal => 'PUBLIC'

, is_grant => true

, privilege => 'resolve');

 

DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL( acl => 'network_services.xml', host => '*');

commit;

end;

/

 

 

 

특정 유저에게  권한부여시 
변경전 : principal => 'PUBLIC'  
변경후 : principal => '유저명'  

 

'DB > oracle' 카테고리의 다른 글

oracle / sqlplus / UTF8 / 한글깨짐  (0) 2022.01.03
oracle xe  (0) 2021.02.10
oracle / db link  (0) 2020.04.24
CentOS6.5 / Oracle11g / The listener supports no services  (0) 2020.04.24
oracle / random YYYYMMDD  (0) 2020.04.22