CentOS 7系统安装Ghost
作者:chszs,未经博主允许不得转载。经许可的转载需注明作者和博客主页:http://blog.csdn/chszs
一、Ghost介绍
Ghost是一个开源、免费的博客平台,它基于Node.js构建,设计目标是简化在线发布博客的过程。
本文主要讲述怎样在CentOS 7上安装Ghost。
二、安装过程
1、首先确保所有的系统包为最新
# yum -y update
- 1
2、安装LAMP服务器
安装基本的LAMP环境是必须的,LAMP是指Linux、Apache、MariaDB、PHP。
1)安装Apache服务器
# yum install httpd openssl mod_ssl
- 1
重启Apache服务器
# systemctl restart httpd# systemctl status httpd# systemctl enable httpd
- 1
- 2
- 3
2)安装MariaDB数据库
# yum install mariadb mariadb-server mysql