flume-netcat-logger.conf 文件编写: # Name the components on this agent a1.sources = r1 a1.sinks = k1 a1.channels = c1 # Describe/configure the source a1.s ...
分类:
Web程序 时间:
2021-03-06 14:54:47
阅读次数:
0
SpringBoot整合Redis SpringBoot 操作数据 :spring-data jpa jdbc mongodb redis! SpringData 也是和SpringBoot 齐名的一个项目 说明:在 SpringBoot2.X之后,之前使用的jedis被替换为了lettuce je ...
分类:
编程语言 时间:
2021-03-06 14:53:16
阅读次数:
0
Bytes are very similar to strings, except that rather than being sequences of Unicode code points, they are sequences of, well, bytes. As such, they a ...
分类:
编程语言 时间:
2021-03-06 14:52:54
阅读次数:
0
拷贝包到自定义文件夹 下载批量导入工具到自定义文件夹https://agent-install.oss-cn-hangzhou.aliyuncs.com/migrate-local-repo-tool.jar 打开本地的Git Bash 切换到工具的位置 批量导入命令说明 仓库地址及用户名密码配置获 ...
分类:
其他好文 时间:
2021-03-06 14:30:51
阅读次数:
0
配置防火墙问题 最近在服务器上部署项目时遇到了用ip访问不了的问题, 在一个纯洁的unbantu环境中 需要先安装防火墙 sudo apt install firewalld 然后启动防火墙 systemctl restart firewalld 我出现了防火墙被锁定的提示 Failed to re ...
分类:
其他好文 时间:
2021-03-06 14:21:48
阅读次数:
0
虚拟机CentOS7中启动失败,因为内存小了,办法如下: 1、增加虚拟机内存 2、修改seata-server.sh文件,将-Xms和-Xmx调小 ...
分类:
其他好文 时间:
2021-03-06 14:19:21
阅读次数:
0
以下代码的实现逻辑出自于公众号 码农翻身 《你管这破玩意叫线程池?》 - PS:刘欣老师在我心中是软件技术行业的大刘。 线程池接口 public interface Executor { public void execute(Runnable r); } View Code 接口中只有一个抽象方法 ...
分类:
其他好文 时间:
2021-03-06 14:16:31
阅读次数:
0
1 def list_of_groups(init_list, childern_list_len): 2 ''' 3 :param init_list: 4 :param childern_list_len: 5 :return: 6 ''' 7 list_of_group = zip(*(ite ...
分类:
编程语言 时间:
2021-03-05 13:23:08
阅读次数:
0
// 一、作用域————块级作用域————let、const: { var name = 'pangpang' } console.log(name) { let name = 'pangpang' } console.log(name) const name = 'pangpang' name = ...
分类:
其他好文 时间:
2021-03-05 13:22:21
阅读次数:
0
安装 首先打开brew.sh网站,把首页一条命令复制到终端里,执行,输入电脑登录密码,开始下载安装 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 换源 安 ...
分类:
系统相关 时间:
2021-03-05 13:12:52
阅读次数:
0