摘要: 一般场景是重试几次后失败 package main import ( "fmt" "time" ) func main() { retry(func() bool { return false }, []int{1, 3, 5}) } func retry(f func() bool, interv 阅读全文
posted @ 2022-05-13 10:17 vx_guanchaoguo0 阅读(375) 评论(0) 推荐(0) 编辑
摘要: ps process status 进程状态 ps -ef e/A 显示全部进程 f 显示进程关系 top 运行与前面峰值较高的部分 阅读全文
posted @ 2022-05-13 10:14 vx_guanchaoguo0 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 强制终止某个进程 taskkill /im 指定进程名称 /F 强制结束 终止nginx taskkill /im nginx.exe /F 阅读全文
posted @ 2022-05-13 10:08 vx_guanchaoguo0 阅读(86) 评论(0) 推荐(0) 编辑
摘要: win10 后台运行 user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid; # 是否设置后台运行默认是on后台运行!: daemon on; 阅读全文
posted @ 2022-05-13 09:35 vx_guanchaoguo0 阅读(222) 评论(0) 推荐(0) 编辑