Linux中國

如何在Ubuntu Server 14.04 LTS(Trusty) 上安裝Ghost

因此有了這篇步驟明確的在Ubuntu Server上安裝Ghost的教程:

1. 升級Ubuntu

第一步是運行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. 配置Ghost

sudo nano config.example.js

在「Production」欄位,將:

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

via: http://linoxide.com/ubuntu-how-to/install-ghost-ubuntu-server-14-04/

作者:Arun Pyasi 譯者:geekpi 校對:wxy

本文由 LCTT 原創翻譯,Linux中國 榮譽推出


本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive

對這篇文章感覺如何?

太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
雨落清風。心向陽

    You may also like

    Leave a reply

    您的電子郵箱地址不會被公開。 必填項已用 * 標註

    此站點使用Akismet來減少垃圾評論。了解我們如何處理您的評論數據

    More in:Linux中國