如何使用命令行管理工具创建 jms 连接工厂?
我将 openmq 与 glassfish 结合使用,目前使用 gf Web 管理工具来创建连接工厂和目的地。我找到了使用 imqcmd 实用程序创建目标的命令,但是没有成功创建连接工厂。有人可以指出我使用 openmq 命令行工具创建队列连接工厂的正确方向吗?
作为参考,这里是我用来创建目标的
imqcmd create dst -tq -n MyFavoriteQueue -u admin
I'm using openmq with glassfish and i currently use the gf web admin tool to create connection factories and destinations. i've found commands to create destinations using the imqcmd utility however have had no luck creating connection factories. can anybody point me in the correct direction to creating a Queue connection factory using the openmq command line tools?
For reference here is what i'm using to create the destination
imqcmd create dst -t q -n MyFavoriteQueue -u admin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 imqobjmgr 实用程序。
imqobjmgr 添加
-l“cn=myQCF”
-j“java.naming.factory.initial=com.sun.jndi.ldap.LdapCtxFactory”
-j“java.naming.provider.url=ldap://mydomain.com:389/o=imq”
-j "java.naming.security.principal=uid=homerSimpson,ou=People,o=imq"
-j“java.naming.security.credentials=doh”
-j“java.naming.security.authentication=简单”
-t qf
-o“imqAddressList=mq://myHost:7272/jms”
You need to use the imqobjmgr utility.
imqobjmgr add
-l "cn=myQCF"
-j "java.naming.factory.initial=com.sun.jndi.ldap.LdapCtxFactory"
-j "java.naming.provider.url=ldap://mydomain.com:389/o=imq"
-j "java.naming.security.principal=uid=homerSimpson,ou=People,o=imq"
-j "java.naming.security.credentials=doh"
-j "java.naming.security.authentication=simple"
-t qf
-o "imqAddressList=mq://myHost:7272/jms"