Question

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

Was it helpful?

Solution

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"

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top