上一页 1 2 3 4 5 6 7 ··· 29 下一页

2023年5月16日

rabbitmq 消息丢失场景,如何保证消息不丢失

摘要: https://blog.csdn.net/w20001118/article/details/126595970 阅读全文

posted @ 2023-05-16 22:59 running-fly 阅读(9) 评论(0) 推荐(0) 编辑

2023年4月11日

k8s 存储卷

摘要: https://www.jianshu.com/p/932cb252bf53 阅读全文

posted @ 2023-04-11 13:16 running-fly 阅读(8) 评论(0) 推荐(0) 编辑

2023年4月10日

go mod 替换不可用包

摘要: require( xxxxxxx v0.0.0-incompatible ) replace( xxxxx => xxxx 分支 ) 以上文件中的 xxxxxx 代码仓库 修改为以上格式,然会使用replace 命令替换 仓库到分支, 使用go mod tidy 命令修复后会自动引用这个分支上合适的 阅读全文

posted @ 2023-04-10 17:31 running-fly 阅读(32) 评论(0) 推荐(0) 编辑

2023年3月21日

docker bash: xxx : command not found

摘要: 1.现象: 在容器内执行route命令会报错 bash: route: command not found 2.原因 容器内没有安装route命令 3.解决办法 (1)bash: ip: command not found apt-get update && apt-get install -y i 阅读全文

posted @ 2023-03-21 10:39 running-fly 阅读(609) 评论(0) 推荐(0) 编辑

2023年2月20日

VMWare centos虚拟机ip固定

摘要: https://blog.csdn.net/weixin_36741151/article/details/106591234 阅读全文

posted @ 2023-02-20 11:50 running-fly 阅读(5) 评论(0) 推荐(0) 编辑

2023年2月9日

flag.StringVar 接受命令行参数

摘要: 接受命令行参数详解 func main() { //定义几个变量,用于接收命令行的参数值 var user string var pwd string var host string var port int //第一个参数:&user 就是接收用户命令行中输入的 -u 后面的参数值 //第二个参数 阅读全文

posted @ 2023-02-09 10:52 running-fly 阅读(150) 评论(0) 推荐(0) 编辑

2023年2月1日

kubectl 常用命令,helm常用命令

摘要: 一.kubectl 1.kubectl 使用不同的kubeconfig文件连接不同的集群 kubectl --kubeconfig config52 get pods -n kube-system | grep etcd 2. 二.helm 1. 更新仓库 helm repo update 2.仓库 阅读全文

posted @ 2023-02-01 18:59 running-fly 阅读(108) 评论(0) 推荐(0) 编辑

2023年1月29日

无法删除状态为 terminating 的 pod 解决方法

摘要: 一、pod 删除 每当删除 namespace 或 pod 等一些 Kubernetes 资源时,有时资源状态会卡在 terminating,很长时间无法删除,甚至有时增加 --force flag (强制删除)之后还是无法正常删除。这时就需要 edit 该资源,将字段f inalizers 设置为 阅读全文

posted @ 2023-01-29 19:20 running-fly 阅读(549) 评论(0) 推荐(0) 编辑

2023年1月11日

windows golang 多版本管理

摘要: 下载g 软件包 源代码链接 https://github.com/voidint/g 二进制包连接 https://github.com/voidint/g/releases 在%USERFILE%目录下.g目录创建把解压出来的g.exe 放到bin目录下【例如C:\Users\ext.zhangx 阅读全文

posted @ 2023-01-11 13:15 running-fly 阅读(415) 评论(0) 推荐(0) 编辑

2023年1月10日

Kubernetes(K8S)集群搭建基础入门教程

摘要: Kubernetes(K8S)集群搭建基础入门教程 https://gopher.blog.csdn.net/article/details/123183215 https://blog.csdn.net/wuhuayangs/article/details/125846695 https://bl 阅读全文

posted @ 2023-01-10 16:30 running-fly 阅读(48) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 29 下一页