首页 > 编程 > JavaScript > 正文

nodejs中安装ghost出错的原因及解决方法

2019-11-19 15:06:14
字体:
来源:转载
供稿:网友

看了标题就知道安装ghost会碰到不少的坑,这里先说一个:

错误

(windows)通过ghost-cli来安装的步骤:

npm install -g ghost-cli  #全局安装ghost-clicd myghostblog   #进入工作目录ghost install local #使用local参数在当前目录初始化一个ghost,使用sqlite数据库

出错信息如下:

√ Downloading and installing Ghost v?√ Finishing install process√ Configuring Ghost√ Setting up instance× Running database migrationsA SystemError occurred.

在ghost install local过程中不仅完成了ghost的初始化,还完成了依赖库的安装(也就是npm install)

从错误提示中看到Running database migrations出错了,其原因是:在下载依赖包sqlite3时出错,导致问题出现。

实际上在下载依赖包时出错,仅仅给出一个警告,警告都会跳过去,直到migrator这一步(数据迁移,也就是初始化数据库)出现了错误,导致安装失败。

而为什么下载sqlite3时出错了呢?

原因

就是因为sqlite3的包(sqlite3 for node)在.s3.amazonaws.com上,这个被墙了。*(满眼的泪呀!)

知道了原因,要解决就很容易了。

解决

解决方案是: cnpm install sqlite3 #使用taobao镜像安装

具体的过程如下:

npm install -g ghost-clicd myghostblog     ghost install local   #会出错cd currentcnpm install      #补装依赖库,并使用taobao镜像安装knex-migrator init   #初始化sqlite数据库,会使用MigratorConfig.jsgrunt dev      #运行 Dev 环境

打开浏览器http://localhost:2368/

加强

上面是在current目录下使用grunt运行起来的,如果要回到ghost-cli通过ghost来运行的话,还需要做一件事,将myghostblog/current/content/data/ghost-dev.db文件拷贝到myghostblog/content/data/ghost-dev.db,并修改文件名为ghost-local.db。(注意看目录差别,中间有一个current目录的差别)

这样就可以回到myghostblog目录使用ghost start来启动了。

cd myghostblogghost start

打开浏览器http://localhost:2368/

最后再说一下环境

windows 10  Node Version: v6.10.3  Ghost-CLI Version: 1.1.3  Ghost Version: 1.14.02017-10-23

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表