synchronization
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
2025-08-25 15:57:40 +08:00
commit cee91802b3
106 changed files with 9124 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
> 本文作者:丁辉
# RabbitMQ启动报错
**报错: `Reason: "no access to this vhost"`**
> 原因vhost 迁移或宕机导致 vhost 不可用,使得无法通过这个 vhost 广播消息
**问题解决方案:**
1. 删除vhost
```bash
rabbitmqctl delete_vhost /
```
2. 重建vhost
```bash
rabbitmqctl add_vhost /
```
3. 授权
```bash
rabbitmqctl set_permissions -p / admin '.*' '.*' '.*'
```
完美解决