[Ubuntu] 우분투에 Nodejs와 Yarn 설치
[Ubuntu] 우분투에 Nodejs와 Yarn 설치
2020.10.04Nodejs 설치 $ sudo apt-get update $ sudo apt-get install -y build-essential $ sudo apt-get install curl $ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -- $ sudo apt-get install -y node.js 설치 버전 확인 $ node -v $ npm -v Yarn 설치 $ npm install -g yarn 설치 버전 확인 $ yarn -v
[Ubuntu] phpmyadmin 설치
[Ubuntu] phpmyadmin 설치
2020.01.22필자의 환경 Ubuntu 16.04 (Vmware) # apt-get update # apt-get install phpmyadmin phpmyadmin 패키지를 설치해준다. # vi /etc/apache2/apache2.conf Include /etc/phpmyadmin/apache.conf 마지막줄에 위 Include 부분을 추가해 준다. # service apache2 restart 아파치 재시작. http://localhost/phpmyadmin 위 사이트를 들어가 사용한다.
Docker 알아보기 - 도커의 기본 개념
Docker 알아보기 - 도커의 기본 개념
2019.11.17뜬금없지만 Docker 을 사용해보고 싶다는 생각이 빡세게 들었다. 바로 본격적으로 시작한다. 필자는 Google Cloud를 사용한다. ( Ubuntu 16.04 사용 중 ) 일단 먼저 가볍게 설치를 한다. (Reference : https://docs.docker.com/install/linux/docker-ce/ubuntu/ ) Get Docker Engine - Community for Ubuntu To get started with Docker Engine - Community on Ubuntu, make sure you meet the prerequisites, then install Docker. Prerequisites Docker EE customers To install Docker E..