英文:
RabbitMQ continually spawns powershell which results in 100% cpu usage
问题
我在Windows Server 2019 Datacenter版本1809上安装了RabbitMQ 3.11.15。当服务正在运行时,我在任务管理器中看到多个powershell实例,CPU使用率为100%。系统几乎无法使用。当我停止RabbitMQ服务时,这些powershell实例不会消失,CPU使用率在100%以下("正常"情况下)。
是否有一种配置RabbitMQ的方式,可以使其不会持续产生powershell实例?
英文:
I have RabbitMQ 3.11.15 installed on Windows Server 2019 Datacenter version 1809. When the service is running, I see multiple instances of powershell in the task manager and the cpu usage is at 100%. The system is virtually unusable. When I stop the RabbitMQ service, those powershell instances do not return and cpu usage is under 100% ("normal").
Is there a way to configure RabbitMQ such that it does not continually spawn powershell?
答案1
得分: 1
Windows更新是我们情况下的罪魁祸首,这与Windows 2022 Datacenter上的类似问题有关。
KB5027225
英文:
Windows updates were the culprit in our case which was a similar issue on Windows 2022 Datacenter
KB5027225
答案2
得分: 1
解决方案 - 将 Sysinternals 的 handle.exe
实用程序安装在您的 PATH 中。
我们已经意识到这个问题 - 当未安装 handle.exe
时,PowerShell 不是一个好的备用方案。
https://github.com/rabbitmq/rabbitmq-server/issues/8700
<sub><b>注意:</b> RabbitMQ团队监控 rabbitmq-users
邮件列表,并且只有在StackOverflow上偶尔回答问题。</sub>
英文:
Solution - install the Sysinternals handle.exe
utility in your PATH.
We are aware of the problem - Powershell is not a good fallback when handle.exe
is not installed.
https://github.com/rabbitmq/rabbitmq-server/issues/8700
<sub><b>NOTE:</b> Team RabbitMQ monitors the rabbitmq-users
mailing list and only sometimes answers questions on StackOverflow.</sub>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论