摘要: 问题:设置client_max_body不起作用(not wroking) 发现: nginx error.log中有 open() "/usr/local/nginx/proxy_temp/x/xx/xxxxxxxx" failed (13: Permission denied) while re 阅读全文
posted @ 2024-02-06 10:12 cnkker.com 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 以二进制模式在CentOS7安装后,运行NET8报错误: # dotnet --list-sdks Failed to load /usr/share/dotnet/host/fxr/8.0.0/libhostfxr.so, error: /lib64/libstdc++.so.6: version 阅读全文
posted @ 2023-12-08 23:07 cnkker.com 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 以下内容包含为 SignalR 启用 WebSocket、ServerSentEvents 和 LongPolling 所需的最低设置: http { map $http_connection $connection_upgrade { "~*Upgrade" $http_connection; d 阅读全文
posted @ 2023-10-11 10:09 cnkker.com 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 错误: Error: Failed to download metadata for repo 'appstream': Cannot prepare internal mirrorlist: No URLs in mirrorlist 解决办法: To migrate from CentOS 8 阅读全文
posted @ 2023-06-14 11:27 cnkker.com 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 一、先配置接口列表 /interface list add comment=defconf name=WAN add comment=defconf name=LAN /interface list member add interface=lan list=LAN add interface=wa 阅读全文
posted @ 2023-03-02 19:08 cnkker.com 阅读(1693) 评论(0) 推荐(0) 编辑
摘要: 常见方法 1. 查找对应代码中有无递归调用,如果有,检查其条件是否正确。 2. 排查内存溢出,检查应用程序中使用的资源,确保其资源使用量不超过操作系统的最大内存限制。 3. 检查程序代码是否有死循环,传递的参数量是否过多,导致程序无法处理太多参数,从而导致堆栈溢出。 4. 检查是否有多线程同时访问共 阅读全文
posted @ 2023-01-10 10:03 cnkker.com 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 0x01 查看进程PID 打开CMD,输入 tasklist /svc|findstr TermService 查出对应的PID,例如1141 0x02 查看PID对应的IP netstat /ano|findstr 1141 这个时候cmd窗口就会显示pid为1141对应的3389所有连接 阅读全文
posted @ 2022-12-09 17:20 cnkker.com 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 说到 Nginx 就不得不说 Nginx 的反向代理是多么的好用,一个指令 proxy_pass 搞定反向代理,对于接口代理、负载均衡很是实用,但 proxy_pass 指令后面的参数很有讲究。 网上有很多什么绝对路径、相对路径的说法,其实在实际的应用中就分为两种情况: url 只是 host 这里 阅读全文
posted @ 2022-10-23 14:15 cnkker.com 阅读(1343) 评论(0) 推荐(0) 编辑
摘要: 联机:就意味着系统对外直接提供的交互,该类交互具有:1)事务性——可回滚;2)实时性——有生命周期,并有超时机制等,调用方需实时等待被调方的反馈,成功或失败皆有反馈;3)并发性——同一类甚至同一个可同时被多个线程调用,相互间有锁处理机制。 批量:则意味着该交互相关的参数、系统状态已经锁定,系统需要进 阅读全文
posted @ 2022-09-06 09:55 cnkker.com 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 部署环境:NET5 数据库:SQL SERVER 2014 操作系统:Centos8 异常: : System.Exception: A connection was successfully established with the server, but then an error occurr 阅读全文
posted @ 2022-06-07 18:21 cnkker.com 阅读(3382) 评论(0) 推荐(0) 编辑