Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Solutions Pre-requisite

...

  1. Download the docker-compose an env file from Google-Drive
  2. Download the required deployment folder

           Image RemovedImage Added

  1. Create a folder on a Linux machine in any path of your inside root.
  2. Place the files inside the created folder as follows:
  3. Open env.txt file with text editor
  4. Image Modified
  5. Make the desired changes and update the file
  6. now run deploy.sh file and you can see after completion your docker image is running

  7. For Active MQ deployment
  8. Image RemovedImage Added
  9. For Rest deployment
  10. Image RemovedImage Added
  11. After that run the following commands to edit the ActiveMQ configuration
    • a. Go into the folder where the docker-compose file is placed

      Code Block
      titleCommand
      cd /root/gc-docker-compose


    • b. Get the ActiveMQ image id by following command

      Code Block
      titleCommand
      docker container ps -a

      Image RemovedImage Added

    • c. Enter the following set of commands to reach to the ActiveMQ configuration file (activemq.xml), and set the urls as in the following image


    • Code Block
      titleCommand
      docker exec -it 63d0f353b533 bash
      cd conf
      vim activemq.xml


    • Add the server IP where the GC and ActiveMQ are running
    • eg. server IP 192.168.2.162
    • Note
      titleNote

      Note: If you wanted to know about vim command, Here is the detail.


...