(Click to open topic with navigation)
To initially define a queue, use the create subcommand of qmgr:
> qmgr -c "create queue batch queue_type=execution"
Once created, the queue must be configured to be operational. At a minimum, this includes setting the options started and enabled.
> qmgr -c "set queue batch started=true"
> qmgr -c "set queue batch enabled=true"
Further configuration is possible using any combination of the following attributes.
For Boolean attributes, T, t, 1, Y, and y are all synonymous with "TRUE," and F, f, 0, N, and n all mean "FALSE."
For queue_type, E and R are synonymous with "Execution" and "Routing" (respectively).
See these topics for more details:
Related Topics