摘要:
# Add Docker's official GPG key: sudo apt-get update sudo apt-get install ca-certificates curl sudo install -m 0755 -d /etc/apt/keyrings sudo curl -fs 阅读全文
摘要:
创建import.sh脚本,写入以下内容 #!/bin/bash # copy and run this script to the root of the repository directory containing files # this script attempts to exclude 阅读全文
摘要:
解决部署在k8s上spring cloud gateway 无故假死的情况 线上发现gateway 会无故假死,测试环境使用jmeter 几分钟后,gateway 也会复现假死的情况 开始排查 获取容器列表 kubectl get pod -o wide 进入gateway kubectl exec 阅读全文
摘要:
解决分层打包后,报Could not find or load main class org.springframework.boot.loader.JarLauncher错误 发现问题 升级到springboot 3.2 后,之前的分层打包启动后会报一下错误 Error: Could not fi 阅读全文
摘要:
![](https://img2023.cnblogs.com/blog/1466705/202311/1466705-20231113113716833-363319439.png) 阅读全文
摘要:
harbor helm安装 harbor 官方文档 https://goharbor.io/docs/2.7.0/install-config/harbor-ha-helm/#installation 官方demo Helm 2: helm install --name my-release har 阅读全文
摘要:
超融合Ubuntu虚拟机扩容 步骤 运行以下命令查看实例的云盘情况 sudo fdisk -lu 运行以下命令扩容分区 sudo growpart /dev/vda 3 Increase the Physical Volume (pv) to max size sudo pvresize /dev/ 阅读全文
摘要:
Docker搭建私有仓库harbor的搭建与使用 环境准备 需要提前安装 docker 、docker-compose 环境 harbor安装 官网 https://goharbor.io/ https://github.com/goharbor/harbor 在 releases https:// 阅读全文
摘要:
git 配置本地代理 1. 设置scoks代理 全局配置代理 git config --global http.proxy socks5://127.0.0.1:10808 git config --global https.proxy socks5://127.0.0.1:10808 当前项目文件 阅读全文
摘要:
windows 上 OpenSSH 服务 启用秘钥登录 windows 安装 OpenSSH 服务 最近需要在windows 服务器上部署自动发布程序,那么就需要用到 scp 和 ssh 的免密登录了 首先需要安装 OpenSSH 服务,过程可以看我上篇 windows 安装 OpenSSH 服务 阅读全文