青龙运行shell Exec format error 作者: 时间: 2021-07-24 分类: 默认分类 11 条评论 You need a shebang line if the executable file cannot be run natively by the kernel. The kernel can only run machine code in a specific format (ELF on most Unix variants), or sometimes other formats (e.g. on Linux you can register executable formats through binfmt_misc). If the executable file needs an interpreter then the kernel needs to know which interpreter to call. That's what the shebang line is for. If your script is in fish syntax, its first line must be `#!/usr/bin/env fish` (You can use the absolute path instead, but then you'll have to modify the script if you want to run it on a machine where the fish executable is in a different location, e.g. /usr/bin/fish vs /usr/local/bin/fish.) If your script is in sh syntax, use `#!/bin/sh` (All modern Unix systems have a POSIX sh at /bin/sh so you don't need env.) If your script is in bash syntax (which is sh plus some bash-specific extensions), use `#!/usr/bin/env bash` On Linux, in practice, #!/bin/bash will also work. All of this is independent of which shell you're calling the script from. All that matters is what language the script is written in. >https://unix.stackexchange.com/questions/491419/fish-shell-exec-format-error
面板504错误 作者: 时间: 2021-06-29 分类: 默认分类 12 条评论 找不到原因,初步怀疑是nginx的问题,复制一点解决方法来等下次出错 情况一:由于nginx默认的fastcgi进程响应缓冲区太小造成 这种情况下导致fastcgi进程被挂起,如果fastcgi服务队这个挂起处理不是很好的话,就可能提示“504 Gateway Time-out”错误。 情况一解决办法: 默认的fastcgi进程响应的缓冲区是8K,我们可以设置大一点,在nginx.conf里,加入:fastcgi_buffers 8 128k 这表示设置fastcgi缓冲区为8块128k大小的空间。 情况一解决办法(改进): 在上述方法修改后,如果还是出现问题,我们可以继续修改nginx的超时参数,将参数调大一点,如设置为60秒: send_timeout 60; 经过这两个参数的调整,结果没有再提示“504 Gateway Time-out”错误,说明效果还是挺不错的,问题基本解决。 情况二:PHP环境的配置问题 这里我们需要对php-fpm和nginx进行配置修改。因为这种情况下,也会出现“504 Gateway Time-out”错误提示。 情况二解决办法( php-fpm配置修改): 将max_children由之前的10改为30,这样操作是为了保证有充足的php-cgi进程可以被使用。 将request_terminate_timeout由之前的0秒改成60秒,这样使php-cgi进程处理脚本的超时时间提高到60秒,可以防止进程被挂起以提高利用效率。 情况二解决办法(nginx配置修改): 为了减少fastcgi的请求次数,尽量维持buffers不变,我们要更改nginx的几个配置项,如下: 将fastcgi_buffers由4 64k改为2 256k; 将fastcgi_buffer_size 由64k改为128k; 将fastcgi_busy_buffers_size由128k改为256k; 将fastcgi_temp_file_write_size由128k改成256k。 情况二解决办法修改完,我们需要重新加载php-fpm和nginx的配置,然后再进行测试。之后就没有发现“504 Gateway Time-out”错误,效果也还是不错的!
Nginx反代二级域名 作者: 时间: 2021-06-07 分类: 默认分类 10 条评论 第一步解析A记录 第二步 在 Nginx 中完成反向代理配置 编辑 Nginx 配置文件,在 nginx.conf 文件中新增server节点如下(通过vi /etc/nginx/nginx.conf修改) server { listen 80; server_name www.abc.com; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $http_host; proxy_pass https://127.0.0.1:443; } } server { listen 80; server_name ocr.abc.com; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $http_host; proxy_pass http://127.0.0.1:8888; } } 第三步 验证二级域名 切记,验证之前先要使用nginx -s reload刷新 Nginx 配置。 > https://heartsuit.github.io/2019/04/30/Nginx-Reverse-Proxy-Server.html
青龙扫码自动cookie 作者: 时间: 2021-06-07 分类: 默认分类 15 条评论 安装青龙扫码 写的一个傻瓜式安装教程,看不懂勿喷。下载压缩包解压到 /ql/目录里面,启动JDC即可 1、解压到/ql/目录下 2、将JDC分配可执行权限 chmod 777 JDC 3、开放5701扫码端口 4、运行JDC nohup ./JDC 如果启动失败,则需要修改配置文件里的路径,主要是注意青龙的文件路径 配置文件是config.toml,可以直接打开修改后上传,也可以在服务器上修改 vi config.toml > https://www.moesugar.com/jsjc/26.html
v2p京东cookie格式 作者: 时间: 2021-06-05 分类: 默认分类 10 条评论 NEWKEY: CookieJD CookieJD2 CookiesJD [{"cookie":"pt_key=xxx;pt_pin=jd_xxx;"}, {"cookie":"pt_keu=xxx;pt_pin=jd_xxx;"}]