上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 64 下一页
摘要: docker-compose version: '3' services: mysql-svc: image: mysql:5.7 container_name: mysql ports: - 3306:3306 environment: TZ: Asia/Shanghai MYSQL_ROOT_P 阅读全文
posted @ 2024-04-07 17:46 vx_guanchaoguo0 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 需要后台运行 * * * * * /usr/local/bin/python main.py >>job.log 2>&1 & 环境变量 // 无论是 命令 还是目录文件都要绝对路径 /usr/local/bin/python // main.py 里面也要使用 绝对路径的文件夹 或者文件 阅读全文
posted @ 2024-03-26 15:42 vx_guanchaoguo0 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 很多时候感觉对了 但是就是404 二级动态代理 可能是多一个斜杠 // 错误代理 // “/” 结尾在URL处,表示反向代理时不是 “https://www.xxxxxxx.com/proxyname/” , // 而是 “https://www.xxxxxxx.com/” ,否则容易出现404的情 阅读全文
posted @ 2024-03-26 14:37 vx_guanchaoguo0 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 排序 def recursive_sort(self, categories): categories.sort(key=lambda x: x['sort']) for category in categories: if category['children']: category['child 阅读全文
posted @ 2024-03-25 11:23 vx_guanchaoguo0 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 首先用ffmeg 获取视频的宽高 为了使图片看起来 和视频大小一致 ffprobe -v error -select_streams v:0 -show_entries stream=width,height -of csv=s=x:p=0 xx1.mp4 将图片缩放到视频宽高 ffmpeg -i 阅读全文
posted @ 2024-03-20 11:00 vx_guanchaoguo0 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 新建用户 useradd -m newuser passwd newuserpwd newuser usermod -d newuserhome newuser 授权目录给用户 chown newuser:newuser /home/newuser 授权用户组 chgrp -R newuser /p 阅读全文
posted @ 2024-03-20 09:32 vx_guanchaoguo0 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 为什么出现这个参数 在大并发的场景下 单机的tcp连接的文件描述符被耗尽了 为什么会被耗尽 进程文件描述符限制 // 默认1024 ulimit -n // 当前临时修改 /etc/security/limits.conf soft nofile 1000000 hard nofile 100000 阅读全文
posted @ 2024-03-19 15:46 vx_guanchaoguo0 阅读(79) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "unsafe" ) func main() { which := make([]byte, 0) which = append(which, []byte("123")...) which1 := which fmt.Printf("whic 阅读全文
posted @ 2024-03-15 17:32 vx_guanchaoguo0 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 设置ICE服务器 const rtcConfiguration = { iceServers: [ {url: "stun:192.168.1.112:3478"}, { url: "turn:192.168.1.112:3478", username: "admin", credential: " 阅读全文
posted @ 2024-03-08 16:20 vx_guanchaoguo0 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 这个仅仅是原理 告你信令服务的作用 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0" 阅读全文
posted @ 2024-03-08 14:42 vx_guanchaoguo0 阅读(12) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 64 下一页