2025年6月20日
摘要: 1、metricbeat简介 将 Metricbeat 部署到您所有的 Linux、Windows 和 Mac 主机,Metricbeat可以定期收集操作系统和服务器的运行指标(CPU,内存,硬盘,IO,读写速度,进程等等),线程数等机器物理性能,类似于Windows的资源管理器功能。 Metric 阅读全文
posted @ 2025-06-20 15:56 别先生 阅读(52) 评论(0) 推荐(0)
  2025年6月5日
摘要: 1、错误描述: 使用kafka自带的zookeeper,首先将zookeeper启动之后,在启动kafka的时候,报下面的异常,如下所示: kafka.zookeeper.ZooKeeperClientTimeoutException: Timed out waiting for connectio 阅读全文
posted @ 2025-06-05 18:02 别先生 阅读(172) 评论(0) 推荐(0)
  2025年3月2日
摘要: 1、Mysql报错 HikariPool-1 - Exception during pool initialization.com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure。 2、报错原 阅读全文
posted @ 2025-03-02 10:30 别先生 阅读(293) 评论(0) 推荐(0)
  2021年12月7日
摘要: 参考:https://www.runoob.com/w3cnote/mysql-stored-procedure.html https://www.cnblogs.com/geaozhang/p/6797357.html http://blog.sina.com.cn/s/blog_86fe5b44 阅读全文
posted @ 2021-12-07 15:42 别先生 阅读(6854) 评论(0) 推荐(1)
  2021年10月30日
摘要: 参考:https://blog.csdn.net/haiyanghan/article/details/106771047 阿里云官方指导:https://help.aliyun.com/document_detail/84822.html 1、准备工作 具体细节参考https://blog.csd 阅读全文
posted @ 2021-10-30 10:29 别先生 阅读(4995) 评论(1) 推荐(1)
  2021年10月25日
摘要: 1、使用commons-net连接ftp报错,如下所示: 1 org.apache.commons.net.MalformedServerReplyException: Could not parse response code. 2 Server Reply: SSH-2.0-SSH 3 at o 阅读全文
posted @ 2021-10-25 17:04 别先生 阅读(1357) 评论(0) 推荐(0)
摘要: 参考:https://my.oschina.net/greatqing/blog/740179 1、jsch jar包连接不上ssh报Algorithm negotiation fail 错误 1 com.jcraft.jsch.JSchException: Algorithm negotiatio 阅读全文
posted @ 2021-10-25 15:47 别先生 阅读(703) 评论(0) 推荐(0)
  2021年9月28日
摘要: 1、解决方案 找到webstorm安装目录下ESlint的配置文件,比如:E:\soft\webstorm\WebStorm 2018.3.6\plugins\JavaScriptLanguage\languageService\eslint\bin\eslint-plugin.js。 1 // 配 阅读全文
posted @ 2021-09-28 15:44 别先生 阅读(3874) 评论(0) 推荐(0)
  2021年8月25日
摘要: 1、 用HttpClient发送Https请求报SSLException: Certificate for <域名> doesn't match any of the subject alternative names问题的解决,报错,如下所示: 1 javax.net.ssl.SSLPeerUnv 阅读全文
posted @ 2021-08-25 15:56 别先生 阅读(9116) 评论(0) 推荐(0)
  2021年8月13日
摘要: 1、在Kibana创建索引的时候报错,使用的elasticsearch版本是7.2.1版本。 1 PUT /person 2 { 3 "settings": { 4 "number_of_shards": "10", 5 "number_of_replicas": "0", 6 "refresh_i 阅读全文
posted @ 2021-08-13 18:11 别先生 阅读(908) 评论(0) 推荐(0)
摘要: 1、启动kibana报错,如下所示: 1 [elsearch@master kibana-7.2.1-linux-x86_64]$ ./bin/kibana 2 log [03:09:30.348] [info][status][plugin:kibana@7.2.1] Status changed 阅读全文
posted @ 2021-08-13 11:51 别先生 阅读(519) 评论(0) 推荐(0)
摘要: 1、启动elasticsearch报错,如下所示: 1 [elsearch@master elasticsearch-7.2.1]$ ./bin/elasticsearch 2 OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC w 阅读全文
posted @ 2021-08-13 11:08 别先生 阅读(1838) 评论(0) 推荐(0)
  2021年8月12日
摘要: 1、Elasticsearch7.2.1版本启动报错 1 [elsearch@localhost elasticsearch-7.2.1]$ ./bin/elasticsearch 2 OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweep 阅读全文
posted @ 2021-08-12 18:54 别先生 阅读(1368) 评论(0) 推荐(0)
  2021年7月5日
摘要: 1、Jmeter5.4.1的查看结果树的响应数据,中文显示乱码的问题,可以通过修改Jmeter的配置文件字符集编码解决乱码的问题。 找到自己的Jmeter的安装目录,E:\soft\jmeter\apache-jmeter-5.4.1\bin\jmeter.properties,打开之后找到此配置# 阅读全文
posted @ 2021-07-05 11:37 别先生 阅读(422) 评论(0) 推荐(0)
  2021年6月28日
摘要: 参考:https://www.cnblogs.com/xuwujing/p/10933082.html 1、首先,需要引入maven依赖包,如下所示: 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.ap 阅读全文
posted @ 2021-06-28 15:26 别先生 阅读(876) 评论(0) 推荐(0)
  2021年6月26日
摘要: ​ 运行环境,jdk1.8或者jdk1.7、tomcat8或者tomcat8.5、mysql5.7、eclipse、myeclipse开发环境。 1、🐧1748741328,基于jsp+servlet的银行信贷管理系统,前台界面,如下所示: ​2、基于jsp+servlet的银行信贷管理系统,登录 阅读全文
posted @ 2021-06-26 23:57 别先生 阅读(636) 评论(2) 推荐(2)
  2021年6月3日
摘要: 1、基于Springboot整合RestTemplate调用Webservice接口,如果感觉使用webservice客户端调用服务器端不会,或者不方便 的时候,可以尝试使用RestTemplate来调用Webservice接口。 首先,需要做的就是要获取到请求webservice服务器端的xml文 阅读全文
posted @ 2021-06-03 21:57 别先生 阅读(4827) 评论(0) 推荐(0)
  2021年5月24日
摘要: 运行环境,jdk1.8或者jdk1.7、tomcat8或者tomcat8.5、mysql5.7、eclipse、myeclipse开发环境。 1、🐧1748741328,基于jsp+servlet的房屋租赁管理系统,前台界面,如下所示: ​ ​ ​ 2、基于jsp+servlet的房屋租赁管理系统 阅读全文
posted @ 2021-05-24 15:07 别先生 阅读(926) 评论(0) 推荐(0)
  2021年4月2日
摘要: 1、Spring Boot项目,发起Post请求,解决Required String parameter xxx is not present类型异常。 1 2021-03-29 08:43:52 - [http-nio-8082-exec-1] - WARN - o.s.w.s.m.support 阅读全文
posted @ 2021-04-02 23:14 别先生 阅读(5978) 评论(0) 推荐(0)
摘要: 1、elasticsearch-7.2.1启动报错,the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_prov 阅读全文
posted @ 2021-04-02 23:12 别先生 阅读(559) 评论(0) 推荐(0)