标签:部署 tps 源文件 资源文件 usr try gre col oca
服务器环境:
centos 5.7
git 已安装
hexo 搭建
## 下载node mkdir /soft/hexo -p wget https://npm.taobao.org/mirrors/node/v12.16.1/node-v12.16.1-linux-x64.tar.xz ## 解压 tar xf node-v12.16.1-linux-x64.tar.xz -C /soft/hexo/ mv /soft/hexo/node-v12.16.1-linux-x64 node.js ## 解压以后测试是否安装成功: cd node.js ./bin/node -v v12.16.1 --版本号 ##设置软连接 ln -s /soft/hexo/node.js/bin/node /usr/local/bin/node ln -s /soft/hexo/node.js/bin/npm /usr/local/bin/npm
npm config set registry https://registry.npm.taobao.org
npm install -g hexo-cli
方式为创建软连接:
ln -s /soft/hexo/node.js/lib/node_modules/hexo-cli/bin/hexo /usr/local/bin/hexo
部署hexo博客环境:这个可以放在nodejs外面,方便打开
mkdir /hexo cd hexo hexo init myblog //会自动把资源文件下载到myblog
## 后台启动 hexo s & ## 查看4000端口 netstat -lntup | grep 4000 tcp6 0 0 :::4000 :::* LISTEN 10694/hexo
git clone https://github.com/fluid-dev/hexo-theme-fluid.git
未完待续。。。。
标签:部署 tps 源文件 资源文件 usr try gre col oca
原文地址:https://www.cnblogs.com/Mercury-linux/p/12528485.html