Versions Compared

Key

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

...


Installation and Configuration

...

  1. Build and start A&AI simulator

...

  1. Build and start

    Code Block
    languagebash
    $ cd ~/has/conductor/conductor/tests/functional/simulators
    $ ./build_aaisim.sh
    $ ./run_aaisim.sh

    Note: DNS name resolution issue may arise during building the simulator, because it needs the **web** Python package.

...

  1. TBD: Provide more detailed instructions. How does one there is an issues? what can one do about it?

...

  1. Verify A&AI Simulator

...

  1. (Hint: in examples, 0.0.0.0 is IPAddress of A&AI container as per $ docker container ls)
    1. $ docker container ls

...

    1. expected result: image names should include:

...

    1. aaisim

...

    1. $ curl http://0.0.0.0:8081/healthcheck

...

    1. expected result: {"status": "success"}

...

    1. $ curl http://0.0.0.0:8081/aai/v13/cloud-infrastructure/cloud-regions/

...

    1. expected result: {"cloud-region": [{"group-assignments": ...much more

...

    1. .

...

    1. .

...

    1. .

...

2. Build and start MUSIC
1. Configure access to MUSIC:
* Edit music/distribution/dockermusic/music.sh to change user/password:
```text
-CASS_USERNAME=cassandra1
-CASS_PASSWORD=cassandra1
+CASS_USERNAME=conductor
+CASS_PASSWORD=c0nduct0r
```
* Edit music/distribution/dockermusic/properties/music.properties to change user/password:
```text
-cassandra.user=cassandra1
-cassandra.password=cassandra1
+cassandra.user=conductor
+cassandra.password=c0nduct0r
```
2. Build and start MUSIC containers
= $ cd ~//music/distribution/dockermusic
- $ ./music.sh start

...