您好,登錄后才能下訂單哦!
在nodejs中安裝ghost時出現錯誤如何解決?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
錯誤
(windows)通過ghost-cli來安裝的步驟:
npm install -g ghost-cli #全局安裝ghost-cli cd myghostblog #進入工作目錄 ghost install local #使用local參數在當前目錄初始化一個ghost,使用sqlite數據庫
出錯信息如下:
√ Downloading and installing Ghost v? √ Finishing install process √ Configuring Ghost √ Setting up instance × Running database migrations A 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-cli cd myghostblog ghost install local #會出錯 cd current cnpm install #補裝依賴庫,并使用taobao鏡像安裝 knex-migrator init #初始化sqlite數據庫,會使用MigratorConfig.js grunt 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 myghostblog ghost start
打開瀏覽器http://localhost:2368/
最后再說一下環境
windows 10 Node Version: v6.10.3 Ghost-CLI Version: 1.1.3 Ghost Version: 1.14.0 2017-10-23
看完上述內容,你們掌握在nodejs中安裝ghost時出現錯誤如何解決的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。