Hexo利用nodehexo实现博客后台运行。

Posted 程序员小冰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hexo利用nodehexo实现博客后台运行。相关的知识,希望对你有一定的参考价值。


- Hexo

用pm2 来接管hexo的进程
开始操作.安装pm2
$ npm  install -g pm2
写一个执行脚本.在博客根目录下面创建一个hexo_run.js
//run
const  exec  = require('child_process')
exec('hexo server',(error, stdout, stderr) => 
        if(error)
                console.log('exec error: $error')
                return
        
        console.log('stdout: $stdout');
        console.log('stderr: $stderr');
)
运行脚本.在根目录下执行。
# pm2 start hexo_run.js

如果关闭,可以使用关闭命令。

pm2 stop hexo_run

以上是关于Hexo利用nodehexo实现博客后台运行。的主要内容,如果未能解决你的问题,请参考以下文章

Hexo 博客利用 Nginx 实现中英文切换

Hexo 博客利用 Nginx 实现中英文切换

使用Hexo搭建个人博客的终极资料

Hexo NexT 博客后台管理指南

hexo+github搭建个人博客

Hexo+GitHub Pages搭建的个人博客