摘要: 创建import.sh脚本,写入以下内容 #!/bin/bash # copy and run this script to the root of the repository directory containing files # this script attempts to exclude 阅读全文
posted @ 2024-03-22 17:31 Pursue` 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 解决部署在k8s上spring cloud gateway 无故假死的情况 线上发现gateway 会无故假死,测试环境使用jmeter 几分钟后,gateway 也会复现假死的情况 开始排查 获取容器列表 kubectl get pod -o wide 进入gateway kubectl exec 阅读全文
posted @ 2024-03-19 16:59 Pursue` 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 解决分层打包后,报Could not find or load main class org.springframework.boot.loader.JarLauncher错误 发现问题 升级到springboot 3.2 后,之前的分层打包启动后会报一下错误 Error: Could not fi 阅读全文
posted @ 2023-12-22 15:07 Pursue` 阅读(402) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2023.cnblogs.com/blog/1466705/202311/1466705-20231113113716833-363319439.png) 阅读全文
posted @ 2023-11-13 11:37 Pursue` 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2023-01-17 09:49 Pursue` 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 超融合Ubuntu虚拟机扩容 步骤 运行以下命令查看实例的云盘情况 sudo fdisk -lu 运行以下命令扩容分区 sudo growpart /dev/vda 3 Increase the Physical Volume (pv) to max size sudo pvresize /dev/ 阅读全文
posted @ 2022-04-29 16:45 Pursue` 阅读(173) 评论(0) 推荐(0) 编辑
摘要: Docker搭建私有仓库harbor的搭建与使用 环境准备 需要提前安装 docker 、docker-compose 环境 harbor安装 官网 https://goharbor.io/ https://github.com/goharbor/harbor 在 releases https:// 阅读全文
posted @ 2022-04-09 17:24 Pursue` 阅读(561) 评论(0) 推荐(0) 编辑
摘要: 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 当前项目文件 阅读全文
posted @ 2021-07-08 19:19 Pursue` 阅读(1221) 评论(0) 推荐(0) 编辑
摘要: windows 上 OpenSSH 服务 启用秘钥登录 windows 安装 OpenSSH 服务 最近需要在windows 服务器上部署自动发布程序,那么就需要用到 scp 和 ssh 的免密登录了 首先需要安装 OpenSSH 服务,过程可以看我上篇 windows 安装 OpenSSH 服务 阅读全文
posted @ 2021-06-28 13:08 Pursue` 阅读(2146) 评论(0) 推荐(0) 编辑
摘要: vue对组件进行二次封装 经常遇到常用组件与设计图有微小区别的情况,但是自写组件功能又太单一(划掉 其实原因就是懒),这个时候对组件封装就很有用处 例如对 element 的 MessageBox 二次封装 组件有很多自定义内容 例如 MessageBox 可自定义配置不同内容。 <template 阅读全文
posted @ 2021-06-08 14:48 Pursue` 阅读(1100) 评论(0) 推荐(0) 编辑