如何优雅的搭建一个Ghost博客?

[Ubuntu+Nginx+Mysql+Node.js+Ghost]

博客地址:https://wwxiong.com

1、前期准备

lsb_release -a //列出当前系统所有版本信息
sudo apt-get update //更新软件源
sudo apt-get install -y language-pack-en-base //中文支持安装
locale-gen en_US.UTF-8 locale  //命令设置语言环境
sudo apt-get install -y vim htop git unzip //安装vim htop git unzip

2、Nginx安装和配置

2.1 安装nginx

sudo apt-get install nginx -y 
sudo apt-get install curl -y # curl命令行工具,发出网络请求得到和提取数据。
curl -i 127.0.0.1 # 确保Nginx运行,默认监听80端口

2.2 设置web目录和cache目录

mkdir /var/www
mkdir -p /var/cache/nginx # -p 可以一下子把中间路径中不存在的文件夹也一起建立,非常实用
chown www-data:www-data /var/www # nginx安装会自动建立用户www-data并且默认用这个用户操作
chown www-data:www-data /var/cache/nginx

2.3 为Ghost单独创建nginx配置文件

rm /etc/nginx/sites-enabled/default # 删掉默认的配置
vim /etc/nginx/sites-available/ghost # 建立一个nginx配置文件
server {
    listen 80;
    server_name wwxiong.com;
    location / {
        proxy_set_header   X-Real-IP $remote_addr;
        proxy_set_header   Host      $http_host;
        proxy_pass         http://127.0.0.1:2368;
    }
}

2.4 重启服务

sudo ln -s /etc/nginx/sites-available/ghost /etc/nginx/sites-enabled/ghost # 建立软链接到到实际配置路径,方便统一维护配置文件变化。
sudo service nginx restart # nginx安装好时已经默认注册了系统的服务,我们就可以直接重启nginx服务,让配置文件生效

2.5 web权限配置

sudo adduser --shell /bin/bash --gecos 'Ghost application' ghost
sudo chown -R ghost:ghost /var/www/ghost/

4、Mysql安装和配置

4.1 安装mysql

sudo apt-get install -y mysql-server-5.6

4.2 设置默认字符集:

$ sudo vim /etc/mysql/my.cnf
[mysqld]
collation-server = utf8_unicode_ci  
init-connect='SET NAMES utf8'  
character-set-server = utf8 

4.3 查看字符集

service mysql restart
mysql -u root -p # 输入设置的密码
show variables like 'char%';
show variables like 'collation%';

4.4 创建数据库

mysql -uroot -p -e 'create database ghost;'

5、Node.js安装

sudo apt-get update  
sudo apt-get install -y python-software-properties python g++ make  
sudo add-apt-repository ppa:chris-lea/node.js   
sudo apt-get install -y nodejs
sudo apt-get update 
sudo apt-get install -y nodejs
node -v 
npm -v

6、Ghost安装和配置

6.1 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

6.2 Ghost配置

cd /var/www/ghost
sudo cp config.example.js config.js
sudo vim config.js
production: {
        url: 'http://wwxiong.com', //替换为你自己的域名。
        mail: {},
        database: {
            updateCheck: false,
            client: 'mysql',
            connection: {
                host     : '127.0.0.1',
                user     : 'root', //我们暂且用 MySQL 的 root 账户
                password : '****', //输入你的 MySQL 密码
                database : 'ghost', //我们前面为 Ghost 创建的数据库名称
                charset  : 'utf8'
            }
        },
        server: {
            // Host to be passed to node's `net.Server#listen()`
            host: '127.0.0.1',
            port: '2368'
        }
    },

6.3 运行ghost

cd /var/www/ghost
vim package.json 
删除package.json 中的"sqlite3": "3.*.*"  //配置为mysql
sudo npm start --production

6.4 保持Ghost的运行

sudo npm install -g forever
NODE_ENV=production forever start index.js
forever list

7 问题解决

7.1 mysql重启失败

问题:service mysql start 时报start: Job failed to start
解决:① 先重启系统再试试service mysql start
     ② 如果①不行先运行 apt-get upgrade -y 升级一下系统,再重启系统后service mysql start

7.2 502 Bad Gateway

① 检查权限

检查/var/www/ghost权限是否为ghost
如果不是则通过创建新用户ghost并给权限
sudo adduser --shell /bin/bash --gecos 'Ghost application' ghost //已创建可略过
sudo chown -R ghost:ghost /var/www/

② 检查配置/etc/nginx/sites-enabled/ghost 是否与/etc/nginx/sites-available/ghost链接
如果没有该软链接则通过以下命令建立并重启nginx

sudo ln -s /etc/nginx/sites-available/ghost /etc/nginx/sites-enabled/ghost
sudo service nginx restart

注:如果在/etc/nginx/sites-available/ghost更改过配置文件或者配置错误,需要删除原来链接并重新建立

sudo rm sites-enabled/ghost  
sudo ln -s /etc/nginx/sites-available/ghost /etc/nginx/sites-enabled/ghost
sudo service nginx restart

③ 检查/var/www/ghost 是否安装ghost的生产模块、是否已正确配置config.js

sudo npm install -g forever //安装forever
NODE_ENV=production forever start index.js //forever保持ghost运行

8 配置相关

8.1 nginx配置

vim /etc/nginx/sites-available/ghost
server {
    listen 80;
    server_name wwxiong.com;#只需更改此处域名
    location / {
        proxy_set_header   X-Real-IP $remote_addr;
        proxy_set_header   Host      $http_host;
        proxy_pass         http://127.0.0.1:2368;
    }
}

8.2 mysql配置

vim /etc/mysql/my.cnf 
[mysqld]
collation-server = utf8_unicode_ci //指定服务器字符集
init-connect='SET NAMES utf8' //设置mysql编码方式
character-set-server = utf8 //连接字符集

8.3 config.js配置

cd /var/www/ghost
cp config.example.js config.js
vim config.js
production: {
        url: 'http://wwxiong.com', //替换为你自己的域名。
        mail: {},
        database: {
            updateCheck: false,
            client: 'mysql',
            connection: {
                host     : '127.0.0.1',
                user     : 'root', //我们暂且用 MySQL 的 root 账户
                password : '****', //输入你的 MySQL 密码
                database : 'ghost', //我们前面为 Ghost 创建的数据库名称
                charset  : 'utf8'
            }
        },
        server: {
            // Host to be passed to node's `net.Server#listen()`
            host: '127.0.0.1',
            port: '2368'
    }
},

9 参考文章

How To Create a Blog with Ghost and Nginx on Ubuntu 14.04

如何搭建一个Ghost平台的博客?

博客第一篇:记录这个网站的诞生过程

搭建Ghost博客 经典教程

使用Ghost搭建个人博客

你可能感兴趣的:(如何优雅的搭建一个Ghost博客?)