Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

의미없는 블로그

[Docker] Oracle 11.2.0.2(11g) 설치 본문

# 나/exploit CVE

[Docker] Oracle 11.2.0.2(11g) 설치

SaltLee 2019. 12. 16. 13:11

참고 : https://hub.docker.com/r/wnameless/oracle-xe-11g-r2

 

이미지 다운로드 docker pull wnameless/oracle-xe-11g-r2:latest

컨테이너 생성 docker run -it -d -P --expose="1521" --expose="8080" -e ORACLE_ALLOW_REMOTE=true --name oracle wnameless/oracle-xe-11g-r2:latest

8080(32768) 포트는 관리 Web 콘솔

http://도커아이피:8080/apex/apex_admin 접속 (ADMIN/admin)

직접 쿼리 사용하려면 컨테이너 들어가서 docker exec -u 0 -it oracle /bin/bash

su oracle

sqlplus /nolog

conn / as sysdba

Comments