Docker with AWS EC2
✅ Install Docker reference AWS https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/install-docker.html # update sudo yum update -y # install sudo yum install -y ...
✅ Install Docker reference AWS https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/install-docker.html # update sudo yum update -y # install sudo yum install -y ...
✅ What is a DB session? ✔️ DB session: logical connection between user(application) and DB DB session starts when user makes the connection and ends when user disconnects allow DB...
✅ What is an Anomaly in a database? ✔️ Anomaly: unexpected problems that happen when inserting, updating, deleting data in DB ❓ When does it happen? when table is not properly struc...
✅ What is the difference between random I/O and sequential I/O? random I/O: access data at arbitary locations on storage device no order WHERE, find with conditions need to skip several r...
✅ Can you explain what SQL is and how it differs from programming languages like C? Structured Query Language: declarative language to interact with RDB used to manage RDB such as INSERT, D...
✅ 파일시스템과 데이터베이스의 차이점에 대해서 설명해주세요. 파일시스템: manage data in files create, delete, update, search files 👎🏻 data redundancy: 같은 데이터가 여러번 중복해서 서로 다른 파일에 저장 👎🏻 data consistency 👎🏻 data integrit...
✅ Docker Compose docker container 여러개 띄우고 하나로 관리하고 싶을 때 여러개의 docker container들을 하나의 서비스로 정의하고 구성, 하나의 묶음으로 관리 👍🏻 easy to maintain several containers together 👍🏻 easier commands ☑️ Docke...
✅ Explain the structure of the JVM JVM: runtime engine that enables Java bytecode to be executed on any platform ClassLoader: load .class file into JVM Runtime data Area: memory Execution...
✅ Docker file docker file: file to create docker image docker image is created using docker file 이미 만들어진 image가 아니라, 내가 원하는 이미지를 만들고 싶을 수 있음 이때 사용하는 것이 docker file ☑️ FROM create ba...
✅ Docker volume command: -v volume: to save data on host memory can keep data regardless of container instead of container, save data on host memory ⚠️ if not use volume, when c...