在CentOS上搭建基于Nodejs的Ghost博客

前端之家收集整理的这篇文章主要介绍了在CentOS上搭建基于Nodejs的Ghost博客前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Ghost介绍

  1. Ghost 是基于 Node.js 构建的开源博客平台。Ghost 具有易用的书写界面和体验,博客内容默认采用Markdown 语法
  2. 书写。Ghost 的目标是取代臃肿的 wordpress

搭建Ghost博客系统

1、本机测试环境

  1. [root@mingc ~]# cat /etc/redhat-release
  2. CentOS Linux release 7.2.1511 (Core)
  3. [root@mingc ~]# uname -r
  4. 3.10.0-514.26.2.el7.x86_64

2、 安装Node.js

  1. #更新yum源
  2. [root@mingc ~]# yum update -y
  3. #安装软件组包Development Tools
  4. [root@mingc ~]# yum groupinstall -y "Development Tools"
  5. #安装NodeSource Node.js 6.x repo
  6. [root@mingc ~]# curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -
  7. #yum安装 nodejs
  8. [root@mingc ~]# yum -y install nodejs
  9. #npm国内镜像(npm是随同NodeJS一起安装的包管理工具)
  10. [root@mingc ~]# npm config set registry https://registry.npm.taobao.org
  11. #安装cnpm模块(因为国内网络的关系,也同时安装了 cnpm 模块,后续将使用该命令代替 npm 命令。)
  12. [root@mingc ~]# npm i -g cnpm

#通过node -v 和npm -v命令查看是否安装成功。

3.、安装 ghost
①安装 Ghost Client (ghost-cli)

  1. [root@mingc ~]# cnpm i -g ghost-cli
  2. #安装成功后通过运行 ghost -v,出现版本号即可表示安装成功。
  3. [root@mingc ~]# ghost -v
  4. Ghost-CLI version: 1.7.1

添加 Ghost 运行用户并创建目录

  1. [root@mingc ~]# adduser ghost
  2. [root@mingc ~]# mkdir /var/www
  3. [root@mingc ~]# mkdir /var/www/ghost
  4. [root@mingc ~]# chown ghost /var/www/ghost

③安装sqlite3 数据库

  1. #新版本不允许root用户安装,需要切换普通用户进行安装。
  2. [root@mingc ~]# su - ghost
  3. [ghost@mingc ~]$ cd /var/www/ghost
  4. [ghost@mingc ~]$ ghost install local --db=sqlite3

④启动 ghost
安装成功后 Ghost 默认就已经启动的

  1. # 停止host
  2. [ghost@mingc ghost]$ ghost stop
  3. # 启动ghost
  4. [ghost@mingc ghost]$ ghost start
  5. #重启ghos
  6. [ghost@mingc ghost]$ ghost restart

安装成功后默认是运行在http://localhost:2368/
可使用如下方式访问:
[ghost@mingc ghost]$ curl http://localhost:2368/

4. 安装 Nginx和整合nodejs

  1. [ghost@mingc ghost]$ su - root
  2. [root@mingc ~]# yum install -y Nginx
  3. #启动 Nginx
  4. [root@mingc ~]# systemctl start Nginx.service
  5. #查看Nginx是否运行
  6. [root@mingc ~]# ps -ef|grep Nginx
  7. #查看是否启动成功 http://你的ip
  1. #设置开机自启动
  2. [root@mingc ~]# systemctl enable Nginx.service
  3. #整合nodejs
  4. [root@mingc ~]#cp /etc/Nginx/Nginx.conf /etc/Nginx/Nginx.conf.ori
  5. [root@mingc Nginx]# vi /etc/Nginx/Nginx.conf +47
  6. server {
  7. ···
  8. location / {
  9. proxy_pass http://127.0.0.1:2368;
  10. proxy_redirect default;
  11. root /usr/share/Nginx/html;
  12. index index.html index.htm;
  13. }
  14. ···
  15. [root@mingc Nginx]# Nginx -s reload

4. 访问搭建的ghost博客
前台页面:@L_403_1@

后台登录页面http://你的ip/ghost

后台管理页面

以上搭建过程本人亲自操作可用,有问题可留言评论,抽空予以解答,觉得有用点个赞,支持下作者!

猜你在找的CentOS相关文章