App Connect

 View Only
  • 1.  Command to list independent integration servers in RHEL

    IBM Champion
    Posted Fri November 18, 2022 11:11 AM
    Hi,

    In ACE v12.0.0.6, I have multiple independent integration servers running in RHEL VM. Is there a command to list the all independent integration servers running in a VM/Server?
    msqilist command only displays the independent nodes, but i want to list only independent integration servers?

    ------------------------------
    Thanks,
    Santhosh Ramanathan
    ------------------------------


  • 2.  RE: Command to list independent integration servers in RHEL

    Posted Mon November 21, 2022 04:45 AM
    Personally, I had to use "ps aux | grep <IS_SeriesName>" to list out all the running integration servers.
    Let's hear from others on this.

    ------------------------------
    TARANDEEP JANDU
    ------------------------------



  • 3.  RE: Command to list independent integration servers in RHEL

    IBM Champion
    Posted Tue November 22, 2022 02:12 AM
    Edited by Matthias Blomme Tue November 22, 2022 03:59 AM

    Same here.
    Just list all integration servers
    ps -ef | grep IntegrationS

    Then list all ports used by the Integration servers
    netstat -ltnup | grep IntegrationS

    And call mqsilist for all of them
    mqsilist --admin-host 127.0.0.1 --admin-port 7600


    or with a one liner that loops over all
    sudo netstat -ltnup | grep IntegrationS | awk {'split($4,s,":"); system("mqsilist --admin-host 127.0.0.1 --admin-port "s[4])}'

    might not be the prettiest code, but it gets the job done



    ------------------------------
    Regards
    Matthias Blomme
    ------------------------------



  • 4.  RE: Command to list independent integration servers in RHEL

    IBM Champion
    Posted Tue November 22, 2022 03:48 AM
    Thanks Matthias & Tarandeep.

    ------------------------------
    Thanks,
    Santhosh Ramanathan
    ------------------------------