- name: 以轮询的方式等待服务同步完成 shell: "systemctl status etcd.service|grep Active" register: etcd_status until: '"running" in etcd_status.stdout' retries: 8 de ...
分类:
其他好文 时间:
2021-01-07 11:40:27
阅读次数:
0
LINUX之FTP服务 1.FTP的连接类型 控制连接(持续连接) → TCP21(命令信道) → 用户收发FTP命令 数据连接(按需连接) → TCP20(数据信道) → 用于上传下载数据 2.FTP的工作模式 ftp模式分为主动模式(active mode)和被动模式(passive mode) ...
分类:
其他好文 时间:
2021-01-06 12:36:45
阅读次数:
0
前段时间,我偶然进行查看linux DNS配置,通过查看 /etc/resolv.conf 文件,得到如下结果: ? devices ll /etc/resolv.conf lrwxrwxrwx 1 root root 39 12月 28 18:55 /etc/resolv.conf -> ../r ...
分类:
系统相关 时间:
2021-01-06 12:29:13
阅读次数:
0
#盘符切换#常看当前目录下所有文件 dir#切换目录 cd change directory#返回上一级目录 cd..#清理屏幕 cls (clear screen)#退出终端 exit#查看电脑的ip ipconfig#打开应用calc 计算器mspaint 画板nodepad 记事本#ping命 ...
分类:
其他好文 时间:
2021-01-05 11:37:00
阅读次数:
0
摘选自:https://www.cnblogs.com/dolphin0520/p/3920373.html volatile这个关键字可能很多朋友都听说过,或许也都用过。在Java 5之前,它是一个备受争议的关键字,因为在程序中使用它往往会导致出人意料的结果。在Java 5之后,volatile关 ...
分类:
编程语言 时间:
2021-01-04 11:29:44
阅读次数:
0
Git error The file will have its original line endings in your working directory Git项目提交代码,即执行git add .命令后,报了这个错误有点懵。 参考博客1:https://www.cnblogs.com/dy ...
分类:
其他好文 时间:
2021-01-02 11:05:53
阅读次数:
0
参考:解决Github网页上图片显示失败的问题 https://blog.csdn.net/qq_38232598/article/details/91346392 现象: 我出现的错误 大部分为ERR_CONNECTION_REFUSED 和上面参考中的错误不一样,但解决方法一致 ,他娘的dns污 ...
分类:
其他好文 时间:
2021-01-02 10:41:03
阅读次数:
0
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>c ...
分类:
其他好文 时间:
2021-01-01 12:13:15
阅读次数:
0
服务发现在api 管理中是一个比较重要的东西,krakend目前已经支持了多种模式的服务发现 etcd dns (consul,或者其他的) static (默认的) eureka (社区的) 说明 配置都是比较简单的,同时官方文档也提供了相关的说明 参考资料 https://www.krakend ...
分类:
其他好文 时间:
2020-12-31 12:24:42
阅读次数:
0
require.context: https://webpack.js.org/guides/dependency-management/#requirecontext require.context(directory, useSubdirectories = true, regExp = /^\ ...
分类:
Web程序 时间:
2020-12-31 12:11:57
阅读次数:
0