惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Troy Hunt's Blog
腾讯CDC
月光博客
月光博客
爱范儿
爱范儿
博客园 - 聂微东
V
Visual Studio Blog
罗磊的独立博客
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Security Latest
Security Latest
T
Threat Research - Cisco Blogs
J
Java Code Geeks
博客园 - 三生石上(FineUI控件)
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
S
Secure Thoughts
Hacker News - Newest:
Hacker News - Newest: "LLM"
Scott Helme
Scott Helme
Blog — PlanetScale
Blog — PlanetScale
MyScale Blog
MyScale Blog
IT之家
IT之家
The Cloudflare Blog
Engineering at Meta
Engineering at Meta
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
B
Blog
Last Week in AI
Last Week in AI
PCI Perspectives
PCI Perspectives
Application and Cybersecurity Blog
Application and Cybersecurity Blog
S
Security Affairs
H
Hacker News: Front Page
T
The Blog of Author Tim Ferriss
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Cisco Talos Blog
Cisco Talos Blog
F
Full Disclosure
V
Vulnerabilities – Threatpost
D
Docker
W
WeLiveSecurity
T
Tor Project blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 司徒正美
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
U
Unit 42

博客园 - Johnson_wang

对云服务器挂载cos桶 记一次NoClassDeffoundEror问题解决过程 nginx配置支持ws,并解决跨域 关于消费端接入dubbo,连接失败问题 RedisTemplate关于key出现前缀\xac\xed\x00\x05t\x00\x0f - Johnson_wang - 博客园 ES 单索引大表拆分 关于ES索引被聚合查询导致filedata堵塞 (pressure too high, (smooth) bulk request circuit break) 发送HTML格式邮件 elasticsearch报错FORBIDDEN/12/index read-only / allow delete spring Boot 相关问题以及修复(后续待补充) mybatis数据加解密处理方案 队列缓存区-db写入 synchronized的实现原理 Scheduler踩坑记录 关于RedisTemplate的map存储踩坑记录 关于HashMap的加载因子相关理解 Mybatis 分页插件PageHelper 遇坑 Linux 下 Mysql忘记密码重置 Eclipse MAT和jvisualvm分析内存溢出
记录一次xxlJob升级版本导致的 xxl-job remoting error(Connection reset)
Johnson_wang · 2025-12-08 · via 博客园 - Johnson_wang

XXL-JOB应运维需求,从2.2.0 升级到2.5.0版本,版本更新完成之后,调度器调度失败,每次都报错 xxl-job remoting error(Connection reset),查询了各种文档未查询出结果。

  后来在本地启动应用时,突然发现控制台打印了一行如下信息:   

 xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9996

 突发奇想是不是 netty的问题呢,于是查看了pom文件的netty引用:

image

 发现 zookeeper 3.7 引用的版本过高 覆盖了 xxl-job 中的netty版本,于是排除掉了 zookeeper相关的netty引用:

image

再次启动,发现不在输出日志:

 xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9996
于是执行调度任务,成功!!!