vps机器重启后, hexo博客502了, 发现没有做开机自启动.
npm用pm2做托管:
创建hexo-backrun.js:
创建pm2-config.json:
创建hexo.service:
systemctl deamon-reload && systemctl start hexo && systemctl enable hexo
vps机器重启后, hexo博客502了, 发现没有做开机自启动.
npm用pm2做托管:
创建hexo-backrun.js:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
[sean@rainingwalk hexo_run ]$ cat hexo-backrun.js var spawn = require('child_process').spawn; /* 其实就是等于执行hexo server --draft*/ free = spawn('hexo', ['server', '--draft']); free.stdout.on('data', function (data) { console.log('standard output:\n' + data); }); free.stderr.on('data', function (data) { console.log('standard error output:\n' + data); }); free.on('exit', function (code, signal) { console.log('child process eixt ,exit:' + code); }); |
创建pm2-config.json:
1 2 3 4 5 6 7 |
[sean@rainingwalk hexo_run ]$ cat pm2-config.json { "apps" : [{ "name" : "blog", "script" : "./hexo-backrun.js" }] } |
创建hexo.service:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
[sean@rainingwalk hexo_run ]$ cat /usr/lib/systemd/system/hexo.service [Unit] Description=PM2 process manager Documentation=https://pm2.keymetrics.io/ After=network.target [Service] User=sean LimitNOFILE=infinity LimitNPROC=infinity LimitCORE=infinity TimeoutStartSec=8 Environment=PATH=/usr/bin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin Environment=PM2_HOME=/home/sean/.pm2 Restart=always RestartSec=8 ExecStart=/usr/bin/pm2 start /data/blog/hexo_run/pm2-config.json --no-daemon ExecReload=/usr/bin/pm2 reload all ExecStop=/usr/bin/pm2 kill [Install] WantedBy=multi-user.target |
systemctl deamon-reload && systemctl start hexo && systemctl enable hexo
问题 使用ansible mitogen 0.3.4插件进行kubespray安装时,报错: EOF on stream; last 100 lines received:\nssh: Could not resolve hostname {%: Name or service not known 分析 经过debug分析,kubespray-default默认定义了如下变量模板: [crayon-67f0b51492242595802038/] 但是通过ansible role去执行后,通过mitogen进行ssh并没有渲染出来变量: [crayon-67f0b51492246691314248/] 可以看到,mitogen的ssh将ansible_ssh_common_args原封不动地输出来了 修改源码验证: 修改transport_config.py, 增加debug信息: [crayon-67f0b51492247961033877/] 下面是输出: [crayon-67f0b51492249064881208/] Read more…
使用docker-compose安装harbor,配置ssl证书后使用nginx反向代理到harbor.配置后安装docker可以直接用域名登录harbor,无需配置私有仓库 nginx配置 1.修改harbor配置文件 [crayon-67f0b51493bbb251247641/] 2.nginx配置 [crayon-67f0b51493bbf962020853/] 另: 创建证书脚本: [crayon-67f0b51493bc0758570649/] 问题: docker pull ycr.yyiuap.com/base/golang:alphine-node-3 Error response from daemon: received unexpected HTTP status: 503 Service Unavailable 解决: 去掉 http_proxy代理即可 参考:https://blog.csdn.net/oscarun/article/details/121395218 1、request canceled while waiting Read more…
nginx转发post请求静态页面405 背景:用户支付成功后的回调是个静态页面。由于from表单连续提交是post方式,所以会报405 not allowed 错误。 常识:使用post方式请求js、html这样的静态文件一般的web服务器都会返回405 Method Not Allowed。因为默认情况下,nginx、apache、IIs等web服务无法响应静态页面的post请求,后端用来处理post请求,生产环境中不会有此问题(一般都不允许配置静态页面的post请求) 问题:为什么默认不支持静态页面post请求呢? 首先了解一下post请求方法,post请求一般用于提交表单或上传文件,post请求会导致新资源的建立或旧资源的更改。就安全方面来说(排除url地址的透明性),它对比get请求会有更改资源的情况,有些静态资源是不允许更改的,所以默认情况下web服务器上的静态资源都不允许发起post请求。 网上说的有很多种,重新编译nginx,设置正则匹配可以访问html文件类啊什么的,都不好用,而且基本都是你抄我我抄你,没有实际应用过。乱糟糟,最后本人用下面这种方式解决了问题。 [crayon-67f0b51493cad182557571/] Nginx配置跨域请求 Access-Control-Allow-Origin * 当出现403跨域错误的时候 No 'Access-Control-Allow-Origin' header is present on the requested resource,需要给Nginx服务器配置响应的header参数: 一、 解决方案 只需要在Nginx的配置文件中配置以下参数: [crayon-67f0b51493cb0216578694/] 二、 解释 1. Access-Control-Allow-Origin [crayon-67f0b51493cb1636832574/] 2. Access-Control-Allow-Headers 是为了防止出现以下错误: Request Read more…
0 Comments