搭建github博客错误汇总

2019-02-21 10:56:41 浏览数 (1)

背景:结合GitHub和Hexo搭建 https://xubeng.github.io

1.错误一

(1)错误内容

FATAL Something’s wrong. Maybe you can find the solution here: http://hexo.io/docs/troubleshooting.html

(2)原因 端口被占用,在浏览器窗口已经打开过http://localhost:4000/

(3)解决方法 用命令换个端口——sudo hexo s -p 5000

2.错误二

(1)错误内容 ERROR Deployer not found: git (2)原因 没有安装hexo发布相关的npm包。

(3)解决方法 安装缺少的包——npm install hexo-deployer-git --save

3.错误三

(1)错误内容 github提示Permission denied (publickey) (2)原因 本地公钥和github设置中的公钥不匹配。 (3)解决方法

方法一: 重新复制 公钥 并粘贴到ssh key中。 方法二:删除原来的所有ssh key,新建一个,再粘贴之前生成的公钥。 方法三:使用命令——ssh-add -K ~/.ssh/id_rsa 具体参考—— Adding your SSH key to the ssh-agent

4.错误四

(1)错误内容 主题错误。 (2)原因 没有生成和发布已有的文章。 (3)解决方法 在项目根目录,依次执行命令:hexo generate -> hexo deploy

0 人点赞