Linux How To Install MongoDB on Ubuntu 14.04 Introduction MongoDB is a free and open-source NoSQL document database used commonly in modern web applications. This tutorial will help you set up MongoDB on your server for a production application environment. Note: MongoDB can be installed automatically on your Droplet by adding this script to its User Data when Keun.R 2 min read 2018.02
Linux 쉘 스크립트 A to Z 실행하기 기초 실행권한 부여하기 chmod +x 파일명 (rxw:read/execute/write) 실행하기 파일명 앞에 ./를 붙이거나 절대 경로를 입력 $ ./script.sh 기초 / 입문 앞으로 채워나아가야할 영역.. Keun.R 1 min read 2018.02
Linux Nginx Nginx Nginx는 리버스 프록시이고, 그 다음이 Http 서버라는 점. 설정 파일의 계층 구조라는 점을 알아야하는데, 상위 블럭의 설정이 하위 블럭의 기본값으로 사용된다. Http블럭 > server블럭 > location블럭 서브도메인 설정하기 nginx.conf 파일 수정하기 /etc/nginx/sites-available/default server { listen 80; server_name nginx1.appsroot.com; location / { root /home/nginx1; index Keun.R 2 min read 2017.10
Linux Spectacle 창 크기조정 (맥OS 단축키) 회사에서 윈도우를 사용중인데, 많이 쓰는 단축키 중 하나인 창 크기조정. * 화면 좌우 자동 분할 win + (화살표 →) * 듀얼 디스플레이간 이동 win + Shift + (화살표 →) 멀티태스킹이 잦은 업무 특성상, 업무효율이 50%는 향상하는 느낌? 이런거 찾아볼 시간에 업무에 집중하는 것도 하나의 좋은 방법일 수 있다. 그리고 몇년 전 윈도우에서 좌우 50%가 아닌, Keun.R 2 min read 2017.10
Linux Jupyterhub 설치하기 우선 눈물을 닦고 시작하자. 파이썬 3.5.2 버전 설치를 위해 반나절을 풀로 날렸다. 그래도 다행인 것은 어느정도 완성을 향해가고 있다는 것과 블로그에 기록을 하고 있다는 것. 패스트 캠퍼스에서 Node.js와 Python을 수강한 지 1년 되었다. 많은 것을 알려주고, 이 세계의 재미를 알려준 수찬이에게 진심으로 감사의 말을 전한다. Python 3. Keun.R 2 min read 2017.10
Linux 리눅스(Linux) 기본 명령어 Alias 파이썬 버전 변경하는 과정에서 고생하며 배운 명령어. 간단하게 단축 명령어를 저장할 수 있다. $ vi ~/.bashrc alias python3='/usr/bin/python3.5'` alias tx=tmuxinator * 등록된 alias 확인하기 alias * 새로운 alias 등록하기 alias cr=clear * 등록된 alias 제거하기 unalias cr 서버간 SCP 파일전송 실제로 서버간 파일 업/다운로드 Keun.R 3 min read 2017.10
Linux Vim Powerline 설치 Python pip, git 설치가 필요 sudo apt-get install python-pip git Powerline 플러그인 설치 sudo pip install git+git://github.com/Lokaltog/powerline 설치 잘 되었는지 확인 which powerline /usr/local/bin/powerline 폰트 설치 wget https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf https://github.com/Lokaltog/powerline/ Keun.R 1 min read 2017.10
Linux Ghost 고군분투 설치기 AWS 환경 셋팅 * 추후 업데이트 1. Ghost 설치하기 아래는 간략하게 리스트만 기록해두고, 자세한 내용은 추후에 업데이트할 예정. * node 설치 sudo apt-get update sudo apt-get install git wget https://nodejs.org/dist/v6.9.4/node-v6.9.4-linux-x64.tar.gz mkdir node tar xvf node-v*.tar.?z --strip-components=1 -C ./node Keun.R 3 min read 2017.10