摘要: 常用Linux命令 系统状态查看 查看当前系统IP地址 ip addr 软件类 安装软件 yum install xxx 查找文件\软件 whereis xxx、which xxx、find / -name xxx 查看软件是否安装 yum list installed xxx 查询软件列表 rpm 阅读全文
posted @ 2022-05-01 20:01 zolmk 阅读(14) 评论(0) 推荐(0) 编辑
摘要: Apple M1 芯片 Tensorflow + Jupyter Notebook环境搭建笔记 1、下载环境包 链接: https://pan.baidu.com/s/1S-7rBMo54m-d7NkvxXI3dg 提取码: k9wa 2、安装 Miniforge3 (提供conda命令) 可以通过 阅读全文
posted @ 2022-02-02 19:51 zolmk 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 使用 Spring Cloud Bus 自动刷新配置 Spring Cloud Bus 是和 Spring Cloud Config 配合起来使用的,Spring Cloud Config 负责提供配置(从 git 仓库),Spring Cloud Bus 负责刷新配置(利用 RabbitMQ)。 阅读全文
posted @ 2020-12-09 13:43 zolmk 阅读(407) 评论(0) 推荐(0) 编辑
摘要: 使用 Spring Cloud Config 统一管理微服务配置 Spring Cloud Config 服务器是一个统一管理分布式系统的配置中心。通过其中的应用和服务,可以部署、访问和管理所有的运行时配置属性项。Spring Config 服务器也支持配置属性的版本控制。 Spring Confi 阅读全文
posted @ 2020-12-08 17:35 zolmk 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 使用 keytool 生成密钥对 + keytool 命令详解 keytool是jdk提供用来生成SSL/TLS密钥的工具。 使用案例: 这里只考虑密钥仓库的使用,假设有AB两台服务器,A的证书为cerA,B的证书为cerB,可以通过keytool导出cer证书,该证书内部包含了公钥。 当需要双向认 阅读全文
posted @ 2020-12-08 11:08 zolmk 阅读(2511) 评论(0) 推荐(0) 编辑
摘要: 最新 SpringCould 项目使用 Config 配置中心 SpringBoot 版本:2.4.0 这个问题搞了我好久好久,一直卡在这里,其实就是个很简单的问题,遇到问题还是应该看看官方文档(当前项目版本的!!!) 当使用最新版本的 Spring Could Config Client 时,请注 阅读全文
posted @ 2020-12-03 21:50 zolmk 阅读(3040) 评论(2) 推荐(2) 编辑
摘要: .c.s.e.MultipleJGitEnvironmentRepository : Error occured cloning to base directory. Spring Cloud Config Server 从 git 获取配置文件报错 解决方法: server: port: 8793 阅读全文
posted @ 2020-12-03 19:10 zolmk 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 使用 Sidecar 整合非 JVM 微服务 假设有个微服务运行在 ip:123.123.123.123 port: 8080 上,我们现在需要将其注册在 Eureka Server 上 首先我们需要在该服务上提供一个 REST 接口,让该接口返回服务的状态,即 { "status":"UP" // 阅读全文
posted @ 2020-12-03 16:13 zolmk 阅读(195) 评论(0) 推荐(0) 编辑
摘要: Tomcat 配置 Https 须知:网站类项目配置 https 有两种方式,一种是直接配置 Tomcat 为 Https,一种是在项目中进行配置。 在项目中配置坑较多,因此选择在 Tomcat 中配置。 一、申请证书 申请证书有以下几种方式: java 的 keytools 生成的免费证书(本地命 阅读全文
posted @ 2020-12-02 15:52 zolmk 阅读(317) 评论(0) 推荐(0) 编辑
摘要: SpringBoot 集成 Shiro 一、添加依赖 pom.xml <!--shiro--> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring-boot-web-starter</artifactId 阅读全文
posted @ 2020-12-02 15:51 zolmk 阅读(139) 评论(0) 推荐(0) 编辑