Ghost 是基於 Node.js 構建的開源博客平臺。Ghost 具備易用的書寫界面和體驗,博客內容默認採用Markdown 語法 書寫。Ghost 的目標是取代臃腫的 Wordpress。
一、本機測試環境html
[root@mingc ~]# cat /etc/redhat-release CentOS Linux release 7.2.1511 (Core) [root@mingc ~]# uname -r 3.10.0-514.26.2.el7.x86_64
二、 安裝Node.js node
#更新yum源 [root@mingc ~]# yum update -y #安裝軟件組包Development Tools [root@mingc ~]# yum groupinstall -y "Development Tools" #安裝NodeSource Node.js 6.x repo [root@mingc ~]# curl --silent --location https://rpm.nodesource.com/setup_6.x | bash - #yum安裝 nodejs [root@mingc ~]# yum -y install nodejs #npm國內鏡像(npm是隨同NodeJS一塊兒安裝的包管理工具) [root@mingc ~]# npm config set registry https://registry.npm.taobao.org #安裝cnpm模塊(由於國內網絡的關係,也同時安裝了 cnpm 模塊,後續將使用該命令代替 npm 命令。) [root@mingc ~]# npm i -g cnpm
#經過node -v 和npm -v命令查看是否安裝成功。
3.、安裝 ghost
①安裝 Ghost Client (ghost-cli)nginx
[root@mingc ~]# cnpm i -g ghost-cli #安裝成功後經過運行 ghost -v,出現版本號便可表示安裝成功。 [root@mingc ~]# ghost -v Ghost-CLI version: 1.7.1
②添加 Ghost 運行用戶並建立目錄sql
[root@mingc ~]# adduser ghost [root@mingc ~]# mkdir /var/www [root@mingc ~]# mkdir /var/www/ghost [root@mingc ~]# chown ghost /var/www/ghost
③安裝SQLite3 數據庫數據庫
#新版本不容許root用戶安裝,須要切換普通用戶進行安裝。 [root@mingc ~]# su - ghost [ghost@mingc ~]$ cd /var/www/ghost [ghost@mingc ~]$ ghost install local --db=sqlite3
④啓動 ghost
安裝成功後 Ghost 默認就已經啓動的npm
# 中止host [ghost@mingc ghost]$ ghost stop # 啓動ghost [ghost@mingc ghost]$ ghost start #重啓ghos [ghost@mingc ghost]$ ghost restart
安裝成功後默認是運行在http://localhost:2368/
可以使用以下方式訪問:
[ghost@mingc ghost]$ curl http://localhost:2368/bash
4. 安裝 Nginx和整合nodejs網絡
[ghost@mingc ghost]$ su - root [root@mingc ~]# yum install -y nginx #啓動 Nginx [root@mingc ~]# systemctl start nginx.service #查看nginx是否運行 [root@mingc ~]# ps -ef|grep nginx #查看是否啓動成功 http://你的ip
#設置開機自啓動 [root@mingc ~]# systemctl enable nginx.service #整合nodejs [root@mingc ~]#cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.ori [root@mingc 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; } ··· [root@mingc nginx]# nginx -s reload
4. 訪問搭建的ghost博客
前臺頁面:http://你的ip/
後臺登陸頁面:http://你的ip/ghost
後臺管理頁面:
curl
以上搭建過程本人親自操做可用,有問題可留言評論,抽空予以解答,以爲有用點個贊,支持下做者!ide