status
-
linux网络编程-捕获子进程的信息(wait/WIFEXITED/WEXITSTATUS)
1 #include <sys/wait.h> 2 pid_t wait(int *stat_loc); 父进程调用wait,如果没有子进程退出,则会立即阻塞自己;当有…
-
Python 批量下载图片简单代码
简单代码 # 导入函数库 import requests import os import time # 创建目录 goalPath = “D://test” if not os.…
-
JavaScript AJAX
var xhr = new XMLHttpRequest(); xhr.open(“POST”, “http://www.baidu.com”, true); xhr.setReq…
-
徒手撸设计模式-备忘录模式
概念 参考链接: https://www.runoob.com/design-pattern/memento-pattern.html 代码案例 新增生产备忘录类,并存状态属性…
-
.net5服务在centos上启动错误的问题记录(code=exited, status=140)
.net5服务程序,同事接手维护,做了次升级,结果发现服务起不来了。 去服务器上查看日志详情: journalctl -xe 显示:code=exited, status=14…
-
ubuntu系统调用
目录 说明 wait sleep 说明 对于一些系统调用的说明 wait pid_t wait(int* status);用来等待fork产生的子进程返回-1代表没有需要等待的子进…
-
Prometheus 监控 Kubernetes Job 资源误报的坑
转载自:https://www.qikqiak.com/post/prometheus-monitor-k8s-job-trap/ 昨天在 Prometheus 课程辅导群里面有同…
-
ubuntu docker 命令
docker停止 sudo systemctl stop docker.socket 无法停止 sudo systemctl stop docker 开始 sudo systemc…
-
在 Rancher 2.3 版本中,添加健康检查后,容器无法启动,实则在容器中调用健康检查是成功的
1、去掉健康检查后,启动容器,在容器中调用健康检查是成功的。如图1 图1 [root@admin-66bbbb996f-4vfj5 /]# curl http://localhos…
-
在 Yii 2.0 中基于 Workerman 启动运行命令行
1、Composer 安装 Workerman 成功。如图1 图1 PS E:/wwwroot/channel-pub-api> composer require worke…