Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的服务器上将 celery 和 RabbitMQ 与现有的 unix 用户一起使用。
如何在 RabbitMQ 中使用 unix 用户?
rabbitmqctl add_vhost myvhost rabbitmqctl set_permissions -p myvhost myUnixUser ".*" ".*" ".*"
和芹菜一起使用
BROKER_URL = 'amqp://myUnixUser@localhost:5672/myvhost/'
谢谢
我认为它无法完成,因为您无法使用 Unix Socket 连接到 RabbitMQ。
只有通过“unix socket”连接才能使用“unix user”进行身份验证。