摘要:
# 查看过期时间 openssl x509 -enddate -noout -in xxx.com.pem # 校验证书文件(crt/cer文件)与密钥文件(key文件)是否匹配 openssl x509 -noout -modulus -in xxx.com.pem | openssl md5 o 阅读全文
摘要:
unrecognised disk label # parted /dev/sdb GNU Parted 2.1 Using /dev/sdb Welcome to GNU Parted! Type 'help' to view a list of commands. (parted) print 阅读全文
摘要:
exporter counter demo // add promhttp beego.Handler("/metrics", promhttp.Handler()) // 或者 handler := http.NewServeMux() handler.Handle("/metrics", pro 阅读全文
摘要:
从vender迁移到gomod示例 测试repo https://github.com/nurdinirashidah/With-glide.lock 删除vender go mod init xxx go mod tidy go build . windows下交叉编译linux go env - 阅读全文
摘要:
容器启动报错 Warning FailedCreatePodSandBox 2m26s (x138 over 77m) kubelet (combined from similar events): Failed to create pod sandbox: rpc error: code = Un 阅读全文
摘要:
首先在 https://www.ipaddress.com 找到 github.com对应的IP地址。 将解析加入/etc/hosts中,然后就可以git clone代码了。 如果过段时间地址失效了,更换就好了。 阅读全文
摘要:
查看java进程占用的内存 FIRST_FLAG=true jps | grep -v Jps | while read line; do if [[ $FIRST_FLAG == "true" ]]; then echo PID APP VSZ/MB RSS/MB FIRST_FLAG=FALSE 阅读全文
摘要:
Last transaction was partial 删除 dataLogDir/version-2 下大小为0的文件后重启 refer 阅读全文
摘要:
setuid 是 set user ID upon execution 再次缩写为suid setgid 是 set group ID upon execution 再次缩写为 sgid 它们是控制文件访问的权限标志(flag),它们分别允许普通用户以可执行文件的 owner 或 owner gro 阅读全文
摘要:
项目地址:https://github.com/muquit/mailsend-go rpm包下载地址:mailsend-go_1.0.10_linux-64bit.rpm 使用举例 mailsend-go -smtp smtp.126.com -port 25 \ auth \ -user xxx 阅读全文
摘要:
文件数 4071 个,共3.8G 389-ds-base-1.3.10.2-6.el7.x86_64.rpm 389-ds-base-libs-1.3.10.2-6.el7.x86_64.rpm CentOS-7-x86_64-DVD-2009.txt ElectricFence-2.2.2-39. 阅读全文
摘要:
共10073个文件 389-ds-base-1.3.10.2-6.el7.x86_64.rpm 389-ds-base-devel-1.3.10.2-6.el7.x86_64.rpm 389-ds-base-libs-1.3.10.2-6.el7.x86_64.rpm 389-ds-base-snm 阅读全文
摘要:
CentOS-7-x86_64-Minimal-2009 共448个rpm包 CentOS-7-x86_64-Minimal-2009.txt GeoIP-1.5.0-14.el7.x86_64.rpm ModemManager-glib-1.6.10-4.el7.x86_64.rpm Networ 阅读全文
摘要:
nginx反向代理获取用户真实ip https://www.nginx.cn/4646.html upstream www.redis.com.cn { ip_hash; server serving-server1.com:80; server serving-server2.com:80; } 阅读全文
摘要:
针对centos/redhat等 配置文件解读 resolv.conf nameserver 表示解析域名时使用该地址指定的主机为域名服务器。其中域名服务器是按照文件中出现的顺序来查询的,且只有当第一个nameserver没有反应时才查询下面的nameserver。 domain 声明主机的域名。很 阅读全文