解决:rabbitmq stomp启用以后无法访问http://localhost:15674/stomp

问题描述:

安装好Erlang、rabbitmq客户端后,启用插件rabbitmq-plugins enable rabbitmq_web_stomp后无法访问http://localhost:15674/stomp/info

兴致勃勃的想学习一下如何实现简单的消息推送,从网上查了一下教程,我感觉很好的一篇文章先在这里给大家分享一下吧,Windows下 安装 rabbitMQ 及操作常用命令 ,安装完成之后,想在本地测试一下,结果前台一直报错,http://localhost:15674/stomp/info访问不了,问了度娘好久,终于找到了解决方法,话不多说,原因就是本地的RabbitMQ未开通STOMP通道,so 当然访问不通咯。下面是我找到的帖子,供大家参考:RabbitMQ开通STOMP通道

步骤:

进入到RabbitMQ安装目录下的sbin文件夹内

解决:rabbitmq stomp启用以后无法访问http://localhost:15674/stomp_第1张图片

Shift加右键进入命令行

解决:rabbitmq stomp启用以后无法访问http://localhost:15674/stomp_第2张图片

执行命令   

rabbitmq-plugins enable rabbitmq_web_stomp
rabbitmq-plugins enable rabbitmq_web_stomp_examples


成功后重启RabbitMQ
 

你可能感兴趣的:(后端)