오늘은 Ubuntu Server 14.04 LTS(Trusty)에 블로그 플랫폼인 Ghost를 설치하겠습니다.
Ghost는 누구나 사용하기 쉽고 무료로 아름답게 디자인된 출판 플랫폼입니다. 무료 오픈 소스 소프트웨어(FOSS)이며 소스 코드는 Github에 있습니다. 2015년 1월 기준(LCTT 번역 주석: 원문은 2014년, 2015년이어야 함) 인터페이스는 매우 간단하며 분석 패널이 있습니다. 편집기는 매우 편리한 분할 화면 표시를 사용합니다.
Ubuntu Server에 Ghost를 설치하는 방법에 대한 단계별 튜토리얼은 다음과 같습니다.
1. 우분투 업그레이드
첫 번째 단계는 Ubuntu 소프트웨어 업그레이드를 실행하고 일련의 필수 추가 패키지를 설치하는 것입니다.
sudo apt-get update sudo apt-get upgrade -y sudo aptitude install -y build-essential zip vim wget
2. Node.js 소스 코드 다운로드 및 설치
wget http://nodejs.org/dist/node-latest.tar.gz tar -xzf node-latest.tar.gz cd node-v*
이제 다음 명령을 사용하여 Node.js를 설치합니다.
./configure make sudo make install
3. Ghost 다운로드 및 설치
sudo mkdir -p /var/www/ cd /var/www/ sudo wget https://ghost.org/zip/ghost-latest.zip sudo unzip -d ghost ghost-latest.zip cd ghost/ sudo npm install --production
4. 고스트 구성
sudo nano config.example.js
'제작' 필드에서 다음과 같이 변경합니다.
host: '127.0.0.1',
이
으로 변경되었습니다.host: '0.0.0.0',
Ghost 사용자 생성
sudo adduser --shell /bin/bash --gecos 'Ghost application' ghost sudo chown -R ghost:ghost /var/www/ghost/
이제 Ghost를 실행하려면 "ghost" 사용자로 로그인해야 합니다.
su - ghost cd /var/www/ghost/
이제 "ghost" 사용자로 로그인되어 Ghost를 시작할 수 있습니다.
npm start --production