Hexo迁移

Hexo迁移

部署参考:

Hexo部署

image-20230922144958700

部署启动完毕后访问IP:4000

拷贝原数据

拷贝四个主要文件

image-20230922145225454

Scp直接发送

1
2
3
4
scp _config.yml  root@192.168.196.14:/data/hexo/
scp -r public/ root@192.168.196.14:/data/hexo/
scp -r source/ root@192.168.196.14:/data/hexo/
scp -r themes/hexo-theme-fluid root@192.168.196.14:/data/hexo/themes

进入容器关闭hexo

1
2
3
docker exec -it hexo bash
netstat -tnlp |grep hexo
kill 168

image-20230922150206380

启动hexo

1
2
cd /data/hexo/
hexo d && hexo g && hexo s

刷新网页 完成迁移