We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When attempting to bind websocket queue to websocket exchange
(/etc/rabbitmq/rabbitmqadmin --vhost=/ declare binding source="swp_websocket_exchange" destination="swp_websocket")
I get the output: Not found: /api/bindings/%2F/e/swp_websocket_exchange/q/swp_websocket
Does anyone know what the issue is or can help fix the issue?
The text was updated successfully, but these errors were encountered:
Not sure if this will help, but I found out that the queue and exchange do not exist. This means that the installer did not set them up.
Sorry, something went wrong.
I also had this, and came to the same conclusion - Queue and exchange did not exist. This helped me:
rabbitmqadmin declare exchange name=swp_websocket_exchange type=direct
exchange declared
rabbitmqadmin declare queue name=swp_websocket durable=true
queue declared
/etc/rabbitmq/rabbitmqadmin --vhost=/ declare binding source="swp_websocket_exchange" destination="swp_websocket"
binding declared
Last, check bindings in RabbitMQ
sudo rabbitmqctl list_bindings
swp_websocket
swp_websocket_exchange
No branches or pull requests
When attempting to bind websocket queue to websocket exchange
(/etc/rabbitmq/rabbitmqadmin --vhost=/ declare binding source="swp_websocket_exchange" destination="swp_websocket")
I get the output:
Not found: /api/bindings/%2F/e/swp_websocket_exchange/q/swp_websocket
Does anyone know what the issue is or can help fix the issue?
The text was updated successfully, but these errors were encountered: