mac oracle11g 설치이슈

code_able·2023년 10월 17일
0

설치 이슈

mac에 docker로 oracle11g 설치 중 ORA-12547에러를 만났다.
Apple silicorn에서 아키텍처가 바껴 oracle을 띄울 수 없다고 한다.

해결방법

colima를 활용해 oracle이미지를 x86/64환경으로 띄우면 가능하다.

  1. colima 설치
brew install colima
  1. colima 실행
colima start --memory 4 --arch x86_64
  1. oracle 11g 이미지 pull
docker pull jaspeen/oracle-xe-11g
  1. 컨테이너 실행
docker run -d --name oracle11g -p 1521:1521 jaspeen/oracle-xe-11g
  1. sqlplus 실행
docker exec -ti oracle11g sqlplus
  1. 인증
user-name : system
password : oracle
profile
할수 있다! code able

0개의 댓글