Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- oracle cloud
- 멀티모듈
- h2 intellij
- in memory
- IAM MFA
- h2 연동
- jpa 환경에서 json type 활용하기
- Transactiona
- 선언적 트랜잭션
- jenkins 배포
- 무료 인스턴스
- JSON type
- 프리티어 인스턴스
- Oracle Linux 8
- aws cli s3
- json type index
- json type column 생성
- server mode
- IAM이란
- aws cli s3 exclude folder
- aws cli s3 cp
- aws cli s3 exclude directory
- mysql json type
- Jenkins
- 트랜잭션 전파속성
- spring boot 멀티모듈
- AWS IAM MFA
- multi module
- json type 활용
- jpa json type
Archives
- Today
- Total
Chris Devlog
[Oracle Cloud] 프리티어 VM 인스턴스 생성하기 본문
반응형
Oracle Cloud
장점
- 무료 인스턴스 2개 제공 [꿀!!]
- 조건부 무료 인스턴스 제공 [꿀꿀!!]
단점
- 콘솔이 느림
- 콘솔 한글지원이 번역기 수준이라 내용이해가 어려움
- 콘솔이 별로임
준비물
Oracle Cloud 계정(Oracle Cloud 가입하기)
VM 인스턴스 생성
리소스 실행 -> VM 인스턴스 생성
이미지 및 구성 -> 편집 -> SSH키(전용/공용) 다운로드-> 생성
- VM.Standard.E2.1.Micro: 항상 무료(최대 2개 상시 무료)
- VM.Standard.A1.Flex: 조건부 무료(매월 처음 3,000 OCPU 시간과 18,000GB 시간을 무료로 받음)
- 항상 무료 리소스에 대해 자세히 알아보기
Always Free Resources
200 GB total of combined boot volume and block volume Always Free Block Volume storage. Five total volume backups (boot volume and block volume combined). When you create a compute instance, the default boot volume size for the instance is 50 GB, which cou
docs.oracle.com
- SSH키는 모두 다운로드한 후 잘 보관해야 함 분실 시 재발급 불가
SSH로 접속하기
컴퓨트 -> 인스턴스 -> 인스턴스 세부정보 확인
- 공용 IP 주소
- 사용자 이름
# ssh-key 저장 위치로 이동후 400권한(파일 주인만 읽을 수 있음)을 부여
chmod 400 [your ssh key name].key #예) chmod 400 jenkins-server.key
# ssh키로 접속
ssh -i [ssh-key] opc@[공용 IP 주소]
기타
flex Server java 설치
# 자바 17 조회
sudo dnf list "*java-17-openjdk*"
# 설치
sudo dnf install java-17-openjdk-devel.x86_64
glibc 언어팩 설치
# Failed to set locale, defaulting to C.UTF-8 에러 발생시
$ sudo yum install glibc-langpack-en glibc-langpack-ko
반응형