X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=website%2Freference%2Fplugins%2Fconnector_stomp.md;fp=website%2Freference%2Fplugins%2Fconnector_stomp.md;h=98eaa7a9c4fb654f48a4815006c953bcaa391aac;hb=8fd0f35facc21b89b378ecfb253e06a66af1e422;hp=b3ec9f792ce3b8c2b359f97cc705696ac254471b;hpb=327162e6e319ff38447992668e0753363b870b6e;p=packages%2Fprecise%2Fmcollective.git diff --git a/website/reference/plugins/connector_stomp.md b/website/reference/plugins/connector_stomp.md index b3ec9f7..98eaa7a 100644 --- a/website/reference/plugins/connector_stomp.md +++ b/website/reference/plugins/connector_stomp.md @@ -4,6 +4,10 @@ title: STOMP Connector toc: false --- [STOMP]: http://stomp.codehaus.org/ +[ConnectorActiveMQ]: /mcollective/reference/plugins/connector_activemq.html +[ConnectorRabbitMQ]: /mcollective/reference/plugins/connector_rabbitmq.html + +*NOTE:* This connector is being deprecated and will not be supported in versions newer than 2.2.x. Please move to one of the [ConnectorActiveMQ] or [ConnectorRabbitMQ]. The stomp connector uses the [STOMP] rubygem to connect to compatible servers. This is known to work with ActiveMQ and Stompserver. Anecdotal evidence suggests it works with RabbitMQ's Stomp plugin. @@ -30,7 +34,7 @@ The most basic configuration method is supported in all versions of the gem: connector = stomp plugin.stomp.base64 = false plugin.stomp.host = stomp.my.net -plugin.stomp.port = 6163 +plugin.stomp.port = 61613 plugin.stomp.user = me plugin.stomp.password = secret {% endhighlight %} @@ -49,12 +53,12 @@ logging about connections, failures and other significant events. connector = stomp plugin.stomp.pool.size = 2 plugin.stomp.pool.host1 = stomp1 -plugin.stomp.pool.port1 = 6163 +plugin.stomp.pool.port1 = 61613 plugin.stomp.pool.user1 = me plugin.stomp.pool.password1 = secret plugin.stomp.pool.host2 = stomp2 -plugin.stomp.pool.port2 = 6163 +plugin.stomp.pool.port2 = 61613 plugin.stomp.pool.user2 = me plugin.stomp.pool.password2 = secret {% endhighlight %}