>웹 프론트엔드 >JS 튜토리얼 >Ubuntu system_node.js에 Ghost 블로그 플랫폼 설치에 대한 자습서

Ubuntu system_node.js에 Ghost 블로그 플랫폼 설치에 대한 자습서

WBOY
WBOY원래의
2016-05-16 15:54:441262검색

오늘은 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

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.