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
Node.js Node.js 설치하기 1. CURL 설치 $ sudo apt-get install build-essential 2. PPA 추가 $ curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - 3. NodeJS 설치 $ sudo apt-get install -y nodejs 4. build-essential 설치 $ sudo apt-get install build-essential MongoDB $ mkdir data $ echo 'mongod --bind_ip=$IP Keun.R 1 min read 2018.02
Linux 쉘 스크립트 A to Z 실행하기 기초 실행권한 부여하기 chmod +x 파일명 (rxw:read/execute/write) 실행하기 파일명 앞에 ./를 붙이거나 절대 경로를 입력 $ ./script.sh 기초 / 입문 앞으로 채워나아가야할 영역.. Keun.R 1 min read 2018.02
Review Iron Lady Pakistan's Iron Lady Muniba Mazari will tell you why failure is an option, but giving up is not Dictation * I was 18 years old when I got married. * I belonged to a very conservative family, a family where good daughters never say "no" to their parents. Keun.R 4 min read 2017.11
Win PPT 기본 템플릿 변경 파워포인트 기본 시작 템플릿을 변경해보자. 비효율적인 템플릿 파워포인트를 제일 처음 실행하면, 익숙한 서식과 함께 보이는 문구가 있습니다. 제목을 입력하십시오 친절한 안내문이지만, 실제로 쓰는 경우는 거의 없을 것입니다. 항상 지우는 작업을 반복적으로 하곤 하죠. 동일한 작업을 계속해야하는 비효율성을 없앨 수 있습니다. 나만의 템플릿 만들기 우선, 가장 먼저 앞으로 쓰게될 템플릿을 만들면 Keun.R 3 min read 2017.11
Phantom JS 설치하기 패키지 관리도구로 손쉽게 설치 실제로 안되는 경우가 많다. $ sudo apt-get install phantomjs 시스템에 폰트 설치하기 (한글폰트가 없는 경우 스크린샷 등 깨져서 나오게 된다) $ sudo apt-get install fonts-unfonts-core $ sudo apt-get install fonts-unfonts-extra PhantomJS 삭제하기 Ubuntu 14.04 에서 단순 삭제를 하기위해서 터미널에 아래 명령어를 입력해보자. sudo apt-get remove phantomjs 위 명령어로는 Keun.R 2 min read 2017.10
MySQL Configuration 사용자 조회 use mysql; select user, host from user; 계정생성 CREATE USER 'name'@'ip' IDENTIFIED BY 'password'; name : 사용자 계정 ip : 출발지 IP ( Any : % , 특정 대역 : xxx.xxx.%) password : 비밀번호 계정에 권한 부여 GRANT ALL PRIVILEGES ON *.* TO 'name'@'ip& Keun.R 2 min read 2017.10
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