问题 在项目中我写了个编译打包的脚本,会拉取gitlab上工程的代码进行编译,然后上传到产品服务器。其中有一次git pull去拉取gitlab上工程代码报错了: ssh_exchange_identification: Connection closed by remote host fatal: ...
分类:
其他好文 时间:
2021-01-13 10:39:28
阅读次数:
0
JDK的String类有一个intern方法: public native String intern(); 方法的注释: /** * Returns a canonical representation for the string object. * <p> * A pool of string ...
分类:
其他好文 时间:
2021-01-11 10:45:52
阅读次数:
0
线程池:三大方法、七大参数、4种拒绝策略 线程池的好处 1、降低资源的消耗 2、提高响应速度 3、方便管理 线程复用、可以控制最大并发数、管理线程 三大方法 ExecutorService threadPool = Executors.newSingleThreadExecutor(); //创建只 ...
分类:
编程语言 时间:
2021-01-08 11:27:30
阅读次数:
0
MySQL之7 InnoDB 和 事务流程、Crash Recovery、ACID InnoDB术语和概念 InnoDB概述图 表数据 磁盘(.ibd)每表文件表空间 段(segment) 区(extents) 页(pages) 内存(innodb_buffer_pool)缓冲池 innodb_bu ...
分类:
数据库 时间:
2021-01-08 11:24:46
阅读次数:
0
客户端报“[ERROR] code: 505, UNEXPECTED_FRAME - expected content header for class 60, got non content header frame instead, recoverable: false, server: tru ...
分类:
其他好文 时间:
2021-01-07 12:36:33
阅读次数:
0
提示:Unable to start adb server: error: protocol fault (couldn't read status): Connection reset by peer问题原因:大多数情况是5037端口被占用。5037为adb默认端口。解决办法:查看哪个程序占用了a ...
分类:
其他好文 时间:
2021-01-06 12:06:11
阅读次数:
0
报错信息: Error: Kubernetes cluster unreachable: Get "http://localhost:8080/version?timeout=32s": dial tcp [::1]:8080: connect: connection refused 报错原因: h ...
分类:
Web程序 时间:
2021-01-06 11:38:10
阅读次数:
0
1,telnet telnet命令用于远端登入,可以用来测试端口连通性,多用于windows,Linux需要安装。 用法:telnet ip port #出现Connection refused表示端口关闭; #出现Connected to ip表示端口开启。 2,ssh ssh是linux的标准配 ...
分类:
系统相关 时间:
2021-01-05 11:25:08
阅读次数:
0
1.创建Maven项目: 点击“File”菜单,或者通过工具栏的“New”创建Project,如下图所示: 选择Maven-》Maven Project,弹出向导对话框,如下图所示: 选中Create a simple project……复选框,其它的设置不变,并点击Next,输入maven项目必须 ...
分类:
Web程序 时间:
2021-01-02 11:15:14
阅读次数:
0
参考:解决Github网页上图片显示失败的问题 https://blog.csdn.net/qq_38232598/article/details/91346392 现象: 我出现的错误 大部分为ERR_CONNECTION_REFUSED 和上面参考中的错误不一样,但解决方法一致 ,他娘的dns污 ...
分类:
其他好文 时间:
2021-01-02 10:41:03
阅读次数:
0