기본 콘텐츠로 건너뛰기

4월, 2023의 게시물 표시

Mac m2 오라클, sql developer 사용

시작 brew install colima colima start --memory 4 --arch x86_64 docker run --name oracle -d -p 8080:8080 -p 1521:1521 jaspeen/oracle-xe-11g docker pull jaspeen/oracle-xe-11g docker exec -it oracle sqlplus system oracle SELECT * FROM all_users; CREATE USER SCOTT IDENTIFIED BY TIGER; GRANT CONNECT, resource to SCOTT; exit 재시작 docker start oracle 중지 docker stop oracle

Mac m2 homebrew 설치

homebrew 설치 https://brew.sh/index_ko 그 후에 다음 두 줄을 터미널에 입력해야함 echo 'eval $(/opt/homebrew/bin/brew shellenv)' >> /Users/choidaruhan/.zprofile eval $(/opt/homebrew/bin/brew shellenv)