如何在centos7上搭建ghost博客

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在centos7上搭建ghost博客相关的知识,希望对你有一定的参考价值。

参考技术A 你需要搭建网站环境,比如php,或者ASP的,然后建立网站空间,然后才是搭建网站,

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

Ghost介绍

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

搭建Ghost博客系统

1、本机测试环境

[[email protected] ~]# cat /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)
[[email protected] ~]# uname -r
3.10.0-514.26.2.el7.x86_64

2、 安装Node.js

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

#通过node -v 和npm -v命令查看是否安装成功。
技术分享图片
3.、安装 ghost
①安装 Ghost Client (ghost-cli)

[[email protected] ~]# cnpm i -g ghost-cli
#安装成功后通过运行 ghost -v,出现版本号即可表示安装成功。
[[email protected] ~]# ghost -v
Ghost-CLI version: 1.7.1

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

[[email protected] ~]#  adduser ghost
[[email protected] ~]#  mkdir /var/www
[[email protected] ~]#  mkdir /var/www/ghost
[[email protected] ~]#  chown ghost /var/www/ghost

③安装SQLite3 数据库

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

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

# 停止host
[[email protected] ghost]$ ghost stop
# 启动ghost
[[email protected] ghost]$ ghost start
#重启ghos
[[email protected] ghost]$ ghost restart

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

4. 安装 Nginx和整合nodejs

[[email protected] ghost]$ su - root
[[email protected] ~]# yum install -y nginx
#启动 Nginx
[[email protected] ~]# systemctl start nginx.service
#查看nginx是否运行
[[email protected] ~]# ps -ef|grep nginx
#查看是否启动成功 http://你的ip

技术分享图片

#设置开机自启动
[[email protected] ~]# systemctl enable nginx.service
#整合nodejs
[[email protected] ~]#cp /etc/nginx/nginx.conf  /etc/nginx/nginx.conf.ori
[[email protected] nginx]# vi /etc/nginx/nginx.conf +47
 server {
 ···
        location / {
        proxy_pass http://127.0.0.1:2368;
        proxy_redirect default;
        root   /usr/share/nginx/html;
        index  index.html index.htm;
        }
                ···
[[email protected] nginx]# nginx -s reload             

4. 访问搭建的ghost博客
前台页面:http://你的ip/
技术分享图片
后台登录页面:http://你的ip/ghost
技术分享图片
后台管理页面:
技术分享图片

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

以上是关于如何在centos7上搭建ghost博客的主要内容,如果未能解决你的问题,请参考以下文章

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

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

如何在VPS中安装Ghost博客

在Azure中搭建Ghost博客并绑定自定义域名和HTTPS

CentOS 7.2 搭建 Ghost 博客

如何在Windows上本地安装Ghost博客系统