[OCI] Autonomous Database) SQL Developer Web의 접속 유저의 변경해 보았다.
웹 콘솔에서 시작하는 SQL Developer Web은 ADMIN 사용자로 연결하도록 구성됩니다.
ADMIN 사용자가 아닌 Database 사용자로 연결하는 방법을 시도했습니다.
참고 정보
Database 사용자 만들기
ADMIN 사용자로 Autonomous Database에 연결
데이터베이스 사용자를 만들고 필요한 권한 부여 (테이블 공간 Quata 등)
create user demo identified by <demo user password>;
grant connect,resource to demo;
ALTER USER demo QUOTA UNLIMITED ON DATA;
사용자 액세스 사용
ADMIN 사용자가 계속해서 다음 코드를 실행
begin
ords_admin.enable_schema(
p_enabled => true,
p_schema => 'DEMO', -- Actual name of the schema
p_url_mapping_type => 'BASE_PATH',
p_url_mapping_pattern => 'api', -- Alias used in the URL for access
p_auto_rest_auth => true
);
commit;
end;
create user demo identified by <demo user password>;
grant connect,resource to demo;
ALTER USER demo QUOTA UNLIMITED ON DATA;
ADMIN 사용자가 계속해서 다음 코드를 실행
begin
ords_admin.enable_schema(
p_enabled => true,
p_schema => 'DEMO', -- Actual name of the schema
p_url_mapping_type => 'BASE_PATH',
p_url_mapping_pattern => 'api', -- Alias used in the URL for access
p_auto_rest_auth => true
);
commit;
end;
SQL Developer 웹을 시작하고 액세스하는 URL 변경
-
SQL Developer Web의 연결 사용자를 변경할 수 있습니다.
Reference
이 문제에 관하여([OCI] Autonomous Database) SQL Developer Web의 접속 유저의 변경해 보았다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kenwatan/items/38fdfa673b2a29affdcf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)