91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2020-07-24 11:59:00 來源:網絡 閱讀:9144 作者:明成51xit 欄目:web開發

Ghost介紹

Ghost 是基于 Node.js 構建的開源博客平臺。Ghost 具有易用的書寫界面和體驗,博客內容默認采用Markdown 語法
書寫。Ghost 的目標是取代臃腫的 Wordpress。

搭建Ghost博客系統

1、本機測試環境

[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

2、 安裝Node.js

#更新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命令查看是否安裝成功。
在CentOS上搭建基于Nodejs的Ghost博客
3.、安裝 ghost
①安裝 Ghost Client (ghost-cli)

[root@mingc ~]# cnpm i -g ghost-cli
#安裝成功后通過運行 ghost -v,出現版本號即可表示安裝成功。
[root@mingc ~]# ghost -v
Ghost-CLI version: 1.7.1

②添加 Ghost 運行用戶并創建目錄

[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 默認就已經啟動的

# 停止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/

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

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

#設置開機自啟動
[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/
在CentOS上搭建基于Nodejs的Ghost博客
后臺登錄頁面:http://你的ip/ghost
在CentOS上搭建基于Nodejs的Ghost博客
后臺管理頁面:
在CentOS上搭建基于Nodejs的Ghost博客

以上搭建過程本人親自操作可用,有問題可留言評論,抽空予以解答,覺得有用點個贊,支持下作者!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乐平市| 彭阳县| 安新县| 通海县| 湛江市| 长春市| 布尔津县| 舞阳县| 原阳县| 安新县| 灵璧县| 银川市| 商城县| 桃园县| 盖州市| 偃师市| 梁山县| 南江县| 迁安市| 安图县| 林甸县| 阳高县| 岢岚县| 东乡族自治县| 山西省| 历史| 和政县| 肇庆市| 内丘县| 改则县| 株洲县| 桐庐县| 云阳县| 都兰县| 东辽县| 丹寨县| 芜湖市| 远安县| 株洲市| 丹棱县| 金川县|