摘要: centos7 环境 查缺补漏 gcc版本下载:https://gcc.gnu.org/mirrors.html 选择最近的镜像 通常是Japan download : http://mirror.koddos.net/gcc/releases/gcc-9.1.0/gcc-9.1.0.tar.xz 阅读全文
posted @ 2019-05-23 00:40 alittlesmile 阅读(2302) 评论(0) 推荐(0) 编辑
摘要: 1. 解压 xz 格式文件 2. 创建 xz 格式文件 参考: https://www.cnblogs.com/sunmmi/articles/9149414.html 阅读全文
posted @ 2019-05-23 00:32 alittlesmile 阅读(346) 评论(0) 推荐(0) 编辑
摘要: 1. 系统备份 下面是我用来备份系统的完整命令: “tar”当然就是我们备份系统所使用的程序了。 “cvpfz”是tar的选项,意思是“创建档案文件”、“保持权限”(保留所有东西原来的权限)、“使用gzip来减小文件尺寸”。 “backup.gz”是我们将要得到的档案文件的文件名。 “/”是我们要备 阅读全文
posted @ 2019-05-22 12:13 alittlesmile 阅读(842) 评论(0) 推荐(0) 编辑
摘要: 1. 下载jdk : jdk-8u211-linux-x64.tar.gz https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 2.解压 tar -zxvf jdk-8u211-li 阅读全文
posted @ 2019-05-21 22:59 alittlesmile 阅读(929) 评论(0) 推荐(0) 编辑
摘要: 1. download https://www.wps.cn/product/wpslinux 2. rpm 安装缺少lib包,于是yum 安装 3.安装完成,运行的时候又报错: /lib64/libc.so.6: version `GLIBC_2.18' not found (required b 阅读全文
posted @ 2019-05-21 14:12 alittlesmile 阅读(887) 评论(0) 推荐(0) 编辑
摘要: Spring 官方最终还是按捺不住推出了自己的网关组件:Spring Cloud Gateway ,相比之前我们使用的 Zuul(1.x) 它有哪些优势呢?Zuul(1.x) 基于 Servlet,使用阻塞 API,它不支持任何长连接,如 WebSockets,Spring Cloud Gatewa 阅读全文
posted @ 2019-05-21 08:28 alittlesmile 阅读(421) 评论(0) 推荐(0) 编辑
摘要: zipkin-server 1. File-->new spring starter project 2.add dependency <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM 阅读全文
posted @ 2019-05-20 22:57 alittlesmile 阅读(591) 评论(0) 推荐(0) 编辑
摘要: 原創: 【spring cloud】spring cloud集成zipkin报错:Prometheus requires that all meters with the same name have the same set of tag keys. spring boot 2.0.X 的版本,整 阅读全文
posted @ 2019-05-20 22:48 alittlesmile 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 尊重原創: https://www.cnblogs.com/sxdcgaq8080/p/10007420.html 一直对于maven中解决jar包依赖问题的解决方法纠结不清: 下面这个例子可以说明一个很简单的解决方法: 项目启动报错: 解决方案: 直接看报错内容,可以看出 是log4j和logba 阅读全文
posted @ 2019-05-20 20:55 alittlesmile 阅读(539) 评论(0) 推荐(0) 编辑
摘要: hystrix-dashboard-turbine-server 1. File-->new spring starter project 2.add dependency 3.Edit application.yml 4.program 5.Run http://localhost:9000/hy 阅读全文
posted @ 2019-05-20 20:10 alittlesmile 阅读(205) 评论(0) 推荐(0) 编辑