Skip to content

Installation Quick Start

Assuming you have Kafka available for connection.

Follow these steps to install and run the JMS Bridge on a Virtual Machine (VM).

  1. Obtain the JMS Bridge distribution from Psyncopate support.
  2. Transfer the downloaded archive (.zip) to the system where the bridge will be installed.
  3. Unzip the file.

After unzipping, set the permissions to run the executable file in the bin directory with the following command:

Terminal window
chmod -R a=rx,u+w bin/

  1. Start the server as a daemon:
    Terminal window
    bin/jms-bridge-server-start -daemon etc/jms-bridge/jms-bridge.conf
  2. Wait 30-40 seconds to ensure the server is running, then check the log file logs/jms-bridge.out for the message Server is now live.
  3. Use the client application (provided by Psyncopate) to produce and consume messages.
  4. Once finished, shut down the server by executing:
    Terminal window
    bin/jms-bridge-server-stop

To verify that the JMS Bridge server is running, you can check the logs or use network commands to confirm that the server is listening on the expected ports.

  1. Check the logs: Look for the message Server is now live in the logs/jms-bridge.out file.

  2. Use network commands: You can use the following commands to check if the server is listening on the expected ports (61616 for JMS and 50006 for the live JMS Bridge):

    Terminal window
    lsof -i :61616

    or

    Terminal window
    ss -tulpn | grep 61616