TranslateProject/published/201502/20150114 How to Install Ghost on Ubuntu Server 14.04 LTS (Trusty).md

74 lines
2.2 KiB
Markdown
Raw Normal View History

2015-01-15 09:44:59 +08:00
如何在Ubuntu Server 14.04 LTS(Trusty) 上安装Ghost
2015-01-14 22:18:49 +08:00
================================================================================
2015-01-15 09:44:59 +08:00
今天我们将会在Ubuntu Server 14.04 LTS (Trusty)上安装一个博客平台Ghost。
2015-01-14 22:18:49 +08:00
Ghost是一款设计优美的发布平台很容易使用且对任何人都免费。它是免费的开源软件FOSS它的源码在Github上。截至2015年1月LCTT 译注原文为2014应为2015它的界面很简单还有分析面板。编辑使用的是很便利的分屏显示。
2015-01-14 22:18:49 +08:00
2015-01-15 09:44:59 +08:00
因此有了这篇步骤明确的在Ubuntu Server上安装Ghost的教程
2015-01-14 22:18:49 +08:00
2015-01-15 09:44:59 +08:00
### 1. 升级Ubuntu ###
2015-01-14 22:18:49 +08:00
2015-01-15 09:44:59 +08:00
第一步是运行Ubuntu软件升级并安装一系列需要的额外包。
2015-01-14 22:18:49 +08:00
sudo apt-get update
sudo apt-get upgrade -y
sudo aptitude install -y build-essential zip vim wget
2015-01-15 09:44:59 +08:00
### 2. 下载并安装 Node.js 源码 ###
2015-01-14 22:18:49 +08:00
wget http://nodejs.org/dist/node-latest.tar.gz
tar -xzf node-latest.tar.gz
cd node-v*
2015-01-15 09:44:59 +08:00
现在我们使用下面的命令安装Node.js
2015-01-14 22:18:49 +08:00
./configure
make
sudo make install
2015-01-15 09:44:59 +08:00
### 3. 下载并安装Ghost ###
2015-01-14 22:18:49 +08:00
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
2015-01-15 09:44:59 +08:00
### 4. 配置Ghost ###
2015-01-14 22:18:49 +08:00
sudo nano config.example.js
2015-01-15 09:44:59 +08:00
在“Production”字段
2015-01-14 22:18:49 +08:00
host: '127.0.0.1',
2015-01-15 09:44:59 +08:00
修改成
2015-01-14 22:18:49 +08:00
host: '0.0.0.0',
2015-01-15 09:44:59 +08:00
### 创建Ghost用户 ###
2015-01-14 22:18:49 +08:00
sudo adduser --shell /bin/bash --gecos 'Ghost application' ghost
sudo chown -R ghost:ghost /var/www/ghost/
现在启动Ghost你需要以“ghost”用户登录。
2015-01-14 22:18:49 +08:00
su - ghost
cd /var/www/ghost/
现在你已经以“ghost”用户登录并可启动Ghost
2015-01-14 22:18:49 +08:00
npm start --production
--------------------------------------------------------------------------------
via: http://linoxide.com/ubuntu-how-to/install-ghost-ubuntu-server-14-04/
作者:[Arun Pyasi][a]
2015-01-15 09:44:59 +08:00
译者:[geekpi](https://github.com/geekpi)
校对:[wxy](https://github.com/wxy)
2015-01-14 22:18:49 +08:00
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出
[a]:http://linoxide.com/author/arunp/