Versions Compared

Key

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

...

  1. You would need to have root access to the vm
  2. Code Block
    languagebash
    sudo su - root
  3. Code Block
    languagebash
    cd /opt
  4. Code Block
    languagebash
    git clone http://gerrit.onap.org/r/aai/test-config
  5. Code Block
    languagebash
    cd test-config
  6. In deploy_vm1.sh comment out the lines 89-94 which should be an if statement checking for the /opt/message-router folder
  7. Create a directory called /opt/config
    1. Code Block
      languagebash
      mkdir /opt/config/
  8. Create a file called /opt/config/nexus_username.txt containing the text: docker
    1. Code Block
      languagebash
      echo "docker" > /opt/config/nexus_username.txt
  9. Create a file called /opt/config/nexus_password.txt containing the text: docker
    1. Code Block
      languagebash
      echo "docker" > /opt/config/nexus_password.txt
  10. Create a file called /opt/config/dmaap_topic.txt containing the text: AAI-EVENT
    1. Code Block
      languagebash
      echo " AAI-EVENT" > /opt/config/dmaap_topic.txt
  11. Create a file called /opt/config/nexus_docker_repo.txt containing text: nexus3.onap.org:10001
    1. Code Block
      languagebash
      echo "nexus3.onap.org:10001" > /opt/config/nexus_docker_repo.txt
  12. Create a file called /opt/config/docker_version.txt containing text: 1.12-STAGING-latest
    1. Code Block
      languagebash
      echo "1.12-STAGING-latest" > /opt/config/docker_version.txt
  13. Please note that in the previous step, docker version is currently 1.12-STAGING-latest and this will be changed later
  14. Code Block
    languagebash
    ./deploy_vm2.sh && ./deploy_vm1.sh



...