[Learn About AWS] 1회차 실습내용 정리
·
Development Study/AWS
AWS Series [Learn About AWS] Series time-map-installer.tistory.com What is EC2? EC2는 무엇일까? EC2 - Elastic Compute Cloud 가상 서버 기능을 제공하는 클라우드 서비스 AWS의 물리적 서버를 가상화 기술을 이용하여 사용자들이 공동으로 사용할 수 있도록 함 컴퓨팅 파워의 크기를 조정 가능 물리적인 서버없이 클라우드를 통해 필요한 만큼 리소스를 요청하여 사용 가능 온프레미스 환경에서 Windows 서버와 LINUX 서버와 동일한 서비스 라는 설명을 담고 있는 EC2 이다. EC2의 인스턴스? 클라우드를 공부하다보면 인스턴스라는 말을 한 번 쯤은 들어본 적이 있을 것이다 그렇다면 인스턴스는 무엇일까? 인스턴스 : 가상 컴퓨..
[Mac, Brew] Upgrade & Downgrade Node Versions
·
Development Study/Background Knowledges
In here, we use Homebrew to upgrade & downgrade you node version 1. Check your node version and search your node lists brew search node node -v 2. Unlink your current node version brew unlink node + If(I don't have that version I want to use!) { brew install node@14 } You can use that command to install the version 3. Install new node version that you want brew link --overwrite --force node@19 +..