I would like to execute exactly the same steps done by the IIB Toolkit deploy (right click the application and Deploy...to an integration server) but using the command line. In my humble opinion it is an action that does trigger several steps/commands.
Asked
Active
Viewed 1,368 times
2 Answers
1
Below are the commands to deploy an application to integration server:
Create a bar file using mqsicreatebar command.
Deploy the created bar file from step 1 using mqsideploy command.

Daniel Steinmann
- 2,119
- 2
- 15
- 25

Rohan
- 607
- 5
- 5
-
Rohan : Thanks for the help. I have typed a few commands 'to create the bar' and then 'deploy it', command line but I had some problems. I will come back as soon I made the deployment working using the command line. – Rudy Vissers Dec 05 '20 at 08:48
-
1Please note that `mqsicreatebar` starts an Eclipse/Toolkit instance in the background (this is why it is so slow) and creates a `.metadata` directory. I had once a problem that it overwrote the `.metadata` of my interactive Eclipse/Toolkit. On the command line (especially Jenkins) I use now always [mqsipackagebar](https://www.ibm.com/support/knowledgecenter/SSMKHH_10.0.0/com.ibm.etools.mft.doc/bc31720_.html) or more precise the `FlowRendererBAR` Java class, which speeds up the build process enormously. – Daniel Steinmann Dec 06 '20 at 21:35