【activemq artemis】新一代ActiveMQ —— Apache ActiveMQ Artemis
安装:
参考文章:https://www.jianshu.com/p/b2734268aaaf
注意 安装过程中如果运行anymo访问(创建broker,输入用户密码后的询问),如果输入Y则管理后台不需要密码
修改config:
参考文章:https://www.cnblogs.com/renshengruxi/p/11671737.html
官方关于安全传输的描述:
http://activemq.apache.org/components/artemis/documentation/latest/configuring-transports.html
资料:
.net demo : https://github.com/apache/activemq-artemis/tree/master/examples/protocols/amqp/dotnet
AMQP 1.0 .NET Library: https://github.com/Azure/amqpnetlite,https://github.com/Azure/amqpnetlite/blob/master/docs/articles/hello_amqp.md
相关博文:https://blogs.apache.org/activemq/entry/using-net-libraries-with-activemq
所有nms api列表:
http://activemq.apache.org/nms
隔壁这位老铁的文章也不错:https://me.csdn.net/guiliguiwang
管理后台开放外网访问:
broker目录\etc\bootstrap.xml
<web bind="http://0.0.0.0:8161" path="web"> <app url="activemq-branding" war="activemq-branding.war"/> <app url="artemis-plugin" war="artemis-plugin.war"/> <app url="console" war="console.war"/> </web>
broker目录\etc\jolokia-access.xml
<restrict> <cors> <allow-origin>*</allow-origin> <strict-checking/> </cors> </restrict>