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
本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive
對這篇文章感覺如何?
太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
More in:Linux中國
如何通過 VLC 使用字幕
使用 VLC 媒體播放器播放和管理字幕的新手指南。
Unix 桌面:在 Linux 問世之前
僅僅開源還不足以實現開放,還需開放標準和建立共識。
Valve 對於 Ubuntu 的 Snap 版本的 Steam 並不滿意:原因何在
你可能會發現,Snap 版本的 Steam 並不如你期待的那樣好,你怎麼看?
Wine 9.0 發布,實驗性地加入了 Wayland 驅動
Wine 的這個新版本正在為未來做好準備!