This guide will illustrate setting up an A&AI development environment for R4 Dublin in Ubuntu 16.04.  

DRAFT - this guide is in process of being updated - thanks for your patience (smile)

NOTE - If you are updating an older version with a new schema object, it will need to be in the latest oxm. In the Dublin Release, the latest oxm and db edgerules version is v16.

(For alternative setup, see also  AAI-2049 - Getting issue details... STATUS  and https://gerrit.onap.org/r/gitweb?p=aai%2Ftest-config.git;hb=e64f08ac8242a7db6eb3238ee0ad1a30c8aecf0d;f=local-setup )

For this exercise, I set up a new instance of Ubuntu in Virtualbox and gave it 16G RAM, 200GB dynamically allocated storage, and 3 processors.

  1. install openjdk 8
    1. sudo apt install openjdk-8-jdk

  2. Install single node hadoop/janusgraph
    1. $ wget http://github.com/JanusGraph/janusgraph/releases/download/v0.2.0/janusgraph-0.2.0-hadoop2.zip
    2. $ unzip janusgraph-0.2.0-hadoop2.zip
    3. $ cd janusgraph-0.2.0-hadoop2/
    4. $ ./bin/janusgraph.sh start, # make sure you are not a root user as elasticsearch cannot be run as root.  Response looks like:
      Forking Cassandra...
      Running `nodetool statusthrift`... OK (returned exit status 0 and printed string "running").
      Forking Elasticsearch...
      Connecting to Elasticsearch (127.0.0.1:9200)...... OK (connected to 127.0.0.1:9200).
      Forking Gremlin-Server...
      Connecting to Gremlin-Server (127.0.0.1:8182).... OK (connected to 127.0.0.1:8182).
      Run gremlin.sh to connect.
    5. you can verify whether everything is running by executing  
      ./bin/janusgraph.sh status

      Gremlin-Server (org.apache.tinkerpop.gremlin.server.GremlinServer) is running with pid 9835
      Elasticsearch (org.elasticsearch.bootstrap.Elasticsearch) is running with pid 9567
      Cassandra (org.apache.cassandra.service.CassandraDaemon) is running with pid 9207


  3. Install haproxy (For MAC OS X users Setting up HAProxy for MAC OS X user )
    1. $ sudo apt-get -y install haproxy
    2. $ <path-to-haproxy>/haproxy -v
      HA-Proxy version 1.6.3 2015/12/25
      Copyright 2000-2015 Willy Tarreau <willy@haproxy.org>
    3. Install the attached haproxy.cfg file in /etc/haproxy

      1. $ wget https://wiki.onap.org/download/attachments/45306687/haproxy.cfg

      2. $ sudo cp haproxy.cfg /etc/haproxy
      3. $ sudo mkdir /usr/local/etc/haproxy
    4. Install the attached aai.pem file in /etc/ssl/private

      1. $ wget https://wiki.onap.org/download/attachments/58230096/aai.pem?version=2&modificationDate=1556133000000&api=v2&download=true

      2. $ sudo cp aai.pem /etc/ssl/private/aai.pem
      3. $ sudo chmod 640 /etc/ssl/private/aai.pem
      4. $ sudo chown root:ssl-cert /etc/ssl/private/aai.pem 
    5. Add these hostnames to the loopback interface in /etc/hosts: 

      1. 127.0.0.1 localhost aai-traversal.api.simpledemo.openecomp.org aai-resources.api.simpledemo.openecomp.org

    6. $ sudo service haproxy restart

  4. follow the initial setup instructions in Setting Up Your Development Environment e.g.
    1. $ sudo apt-get install git
    2. $ sudo apt-get install npm
    3. $ sudo apt-get install maven
    4. $ sudo apt-get install docker.io
    5. $ wget https://git.onap.org/oparent/plain/settings.xml
    6. $ mkdir ~/.m2
    7. cp settings.xml ~/.m2
    8. If you get an error on some of the repos saying that oparent is unresolvable, using the example settings.xml file should solve this problem: Setting Up Your Development Environment#MavenExamplesettings.xml
  5. Set up repos:
    1. $ mkdir -p ~/src/aai
    2. $ cd ~/src/aai ; for f in aai-common schema-service resources traversal graphadmin logging-service ; do git clone ssh://<username>@gerrit.onap.org:29418/aai/$f; done
  6. Please note that this step will result in "error: pathspec 'dublin' did not match any file(s) known to git" until dublin branch is cut, for now the branch is master, which is checked out by default, so you can skip it for now.
    1. cd ~/src/aai ; for f in aai-common schema-service resources traversal graphadmin logging-service ; do
      (cd $f ; git checkout dublin) done | tee checkoutlog.txt
  7. Janus Setup (part 1) 
    Modify both janus-cached.properties and janus-realtime.properties to the following (for all MS’s that will connect to the local Cassandra backend)
    storage.backend=cassandra
    storage.hostname=localhost
    # keyspace is onap or different keyspace name of your choosing
    storage.cassandra.keyspace=onap
    • ~/src/aai/resources/aai-resources/src/main/resources/etc/appprops/janusgraph-cached.properties
    • ~/src/aai/resources/aai-resources/src/main/resources/etc/appprops/janusgraph-realtime.properties
    • ~/src/aai/traversal/aai-traversal/src/main/resources/etc/appprops/janusgraph-cached.properties
    • ~/src/aai/traversal/aai-traversal/src/main/resources/etc/appprops/janusgraph-realtime.properties
    • ~/src/aai/graphadmin/src/main/resources/etc/appprops/janusgraph-cached.properties
    • ~/src/aai/graphadmin/src/main/resources/etc/appprops/janusgraph-realtime.properties
  8. Build all the modules:
    1. $ cd ~/src/aai ; for f in aai-common schema-service resources traversal graphadmin logging-service ; do
      (cd $f ; mvn versions:set -DnewVersion=0.0.1-TEST-SNAPSHOT && mvn -DskipTests clean install -Daai.schema.version=0.0.1-TEST-SNAPSHOT) done | tee log.txt 2>&1
    2. $ grep -e "SUCCESS" -e "FAILURE" log.txt

      [INFO] aai-aai-common ..................................... SUCCESS [ 11.543 s]
      [INFO] BUILD SUCCESS
      [INFO] aai-aai-common ..................................... SUCCESS [ 44.181 s]
      [INFO] aai-rest ........................................... SUCCESS [ 26.592 s]
      [INFO] aai-schema-ingest .................................. SUCCESS [ 28.671 s]
      [INFO] aai-annotations .................................... SUCCESS [ 0.718 s]
      [INFO] aai-core ........................................... SUCCESS [ 40.965 s]
      [INFO] aai-auth ........................................... SUCCESS [ 1.228 s]
      [INFO] aai-utils .......................................... SUCCESS [ 5.942 s]
      [INFO] BUILD SUCCESS
      [INFO] aai-schema-service ................................. SUCCESS [ 1.422 s]
      [INFO] BUILD SUCCESS
      [INFO] aai-schema-service ................................. SUCCESS [ 3.070 s]
      [INFO] aai-annotations .................................... SUCCESS [ 5.130 s]
      [INFO] aai-schema-gen ..................................... SUCCESS [01:46 min]
      [INFO] aai-schema ......................................... SUCCESS [ 32.504 s]
      [INFO] aai-queries ........................................ SUCCESS [ 6.461 s]
      [INFO] aai-schema-service ................................. SUCCESS [02:17 min]
      [INFO] BUILD SUCCESS
      [INFO] aai-resources ...................................... SUCCESS [ 1.190 s]
      [INFO] BUILD SUCCESS
      [INFO] aai-resources ...................................... SUCCESS [ 3.210 s]
      [INFO] aai-resources ...................................... SUCCESS [ 41.213 s]
      [INFO] BUILD SUCCESS
      [INFO] aai-traversal ...................................... SUCCESS [ 1.090 s]
      [INFO] BUILD SUCCESS
      [INFO] aai-traversal ...................................... SUCCESS [ 3.181 s]
      [INFO] aai-traversal ...................................... SUCCESS [ 58.001 s]
      [INFO] BUILD SUCCESS
      [INFO] BUILD SUCCESS
      [INFO] BUILD SUCCESS
      [INFO] aai-logging-service ................................ SUCCESS [ 1.101 s]
      [INFO] BUILD SUCCESS
      [INFO] aai-logging-service ................................ SUCCESS [ 5.230 s]
      [INFO] Common Logging API ................................. SUCCESS [ 1.995 s]
      [INFO] EELF Logging Implementation ........................ SUCCESS [ 4.235 s]
      [INFO] Common Logging Distribution ........................ SUCCESS [ 0.530 s]
      [INFO] BUILD SUCCESS


  9. Janus setup (part 2)
    1. Run this on the local instance on your first time running AAI and whenever using new keyspace or after wiping the data.
    2. Install the schema
      1. $ (cd ~/src/aai/graphadmin/ && mvn -PrunAjsc -Dstart-class=org.onap.aai.schema.GenTester -Daai.schema.version=0.0.1-TEST-SNAPSHOT -Daai.schema.ingest.version=0.0.1-TEST-SNAPSHOT -DskipTests -Dcheckstyle.skip=true -DAJSC_HOME=$HOME/src/aai/graphadmin -DBUNDLECONFIG_DIR=src/main/resources)
      2. You should see: 
        ---- NOTE --- about to open graph (takes a little while)--------;
        -- Loading new schema elements into JanusGraph --
        -- graph commit
        -- graph shutdown
  10. Start the "resources" microservice
    1. Resources runs on port 8447.  Go to the resources directory
      $ cd ~/src/aai/resources
    2. Set the debug port to 9447
      $ export MAVEN_OPTS="-Xms1024m -Xmx5120m -XX:PermSize=2024m -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=9447,server=y,suspend=n"
    3. Start the microservice - adjust your build version accordingly
      $ mvn -pl aai-resources -PrunAjsc -Daai.schema.version=0.0.1-TEST-SNAPSHOT -Daai.schema.ingest.version=0.0.1-TEST-SNAPSHOT -DskipTests -Dcheckstyle.skip=true
      Should see something like this: Resources Microservice Started 

  11. Verify the resources microservice (this example uses curl from commandline)
    1. $ sudo apt-get install jq  # for pretty output
    2. $ wget https://wiki.onap.org/download/attachments/45306687/test-complex
    3. $ wget https://wiki.onap.org/download/attachments/45306687/data-complex.json
    4. $ sh ./test-complex 2>&1 | tee log.txt
    5. Confirm log.txt contains:

      > GET /aai/v16/cloud-infrastructure/complexes HTTP/1.1
      {
        "requestError": {
          "serviceException": {
            "messageId": "SVC3001",
            "text": "Resource not found for %1 using id %2 (msg=%3) (ec=%4)",
            "variables": [
              "GET",
              "cloud-infrastructure/complexes",
              "Node Not Found:No Node of type complex found at: cloud-infrastructure/complexes",
              "ERR.5.4.6114"
            ]
          }
        }
      }
      
      

      then followed by:

      > PUT /aai/v16/cloud-infrastructure/complexes/complex/clli2 HTTP/1.1
      > GET /aai/v16/cloud-infrastructure/complexes/complex/clli2 HTTP/1.1
      {
        "physical-location-id": "clli2",
        "data-center-code": "example-data-center-code-val-6667",
        "complex-name": "clli2",
        "identity-url": "example-identity-url-val-28399",
        "resource-version": "1543408364646",
        "physical-location-type": "example-physical-location-type-val-28399",
        "street1": "example-street1-val-28399",
        "street2": "example-street2-val-28399",
        "city": "example-city-val-28399",
        "state": "example-state-val-28399",
        "postal-code": "example-postal-code-val-28399",
        "country": "example-country-val-28399",
        "region": "example-region-val-28399",
        "latitude": "1111",
        "longitude": "2222",
        "elevation": "example-elevation-val-28399",
        "lata": "example-lata-val-28399"
      }
      
      

      and finishes with:

      > DELETE /aai/v16/cloud-infrastructure/complexes/complex/clli2?resource-version=1543408364646 HTTP/1.1
      > GET /aai/v16/cloud-infrastructure/complexes HTTP/1.1
      {
        "requestError": {
          "serviceException": {
            "messageId": "SVC3001",
            "text": "Resource not found for %1 using id %2 (msg=%3) (ec=%4)",
            "variables": [
              "GET",
              "cloud-infrastructure/complexes",
              "Node Not Found:No Node of type complex found at: cloud-infrastructure/complexes",
              "ERR.5.4.6114"
            ]
          }
        }
      }
      
      
  12. Alternately, verify the resources microservice (this example uses Postman utility for Google Chrome)
    1. Use basic auth, user = AAI, pw = AAI
    2. Set the X-TransactionId header (in the example below, the value is 9999)
    3. Set the X-FromAppId header (in the example below, the value is jimmy-postman)
    4. Perform a GET of https://127.0.0.1:8443/aai/v16/network/vces
    5. You should see an error as below, 404 Not Found, ERR.5.4.6114.  This indicates that the service is functioning normally:



  13. Start the "traversal" microservice
    1. Traversal runs on port 8446.  Go to the traversal directory
      $ cd ~/src/aai/traversal
    2. Set the debug port to 9446
      $ export MAVEN_OPTS="-Xms1024m -Xmx5120m -XX:PermSize=2024m -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=9446,server=y,suspend=n"
    3. Start the microservice - adjust your build version accordingly
      $ mvn -pl aai-traversal -PrunAjsc -Daai.schema.version=0.0.1-TEST-SNAPSHOT -Daai.schema.ingest.version=0.0.1-TEST-SNAPSHOT -DskipTests -Dcheckstyle.skip=true
      Should see something like this: Traversal Microservice Started

  14. Verify the traversal microservice by executing attached postman AAI API calls
    1. Set up the widget models
      This will set up the postman to add widget models: Add_Widget_Models.postman_collection.json
    2. Create a runner using this file: models.csv
    3. Run the test runner
    4. Add a named query called "getComponentList" (this named query is used by VID): NamedQuery.postman_collection.json
    5. Add objects:  Add_Instanes_for_Named_Query.postman_collection.json (replace the xmlns "http://org.openecomp.aai.inventory/v16" with "http://org.onap.aai.inventory/vXX" in the Body of the PUT request when using version above v11)
    6. Execute named-query: Execute Named Query.postman_collection.json
      You should see something like the following:
  15. Your A&AI instance is now running, both the resources and traversal microservices are working properly with a local janus graph. 
  16. Next: AAI Tutorial-Making and Testing a Schema Change - Dublin

Attachments

  File Modified
File test-complex Feb 20, 2019 by Keong Lim
File NamedQuery.postman_collection.json Feb 20, 2019 by Keong Lim
File models.csv Feb 20, 2019 by Keong Lim
PNG File image2017-7-26_16-58-5.png Feb 20, 2019 by Keong Lim
PNG File image2017-7-26_16-23-12.png Feb 20, 2019 by Keong Lim
PNG File image2017-7-26_16-17-19.png Feb 20, 2019 by Keong Lim
PNG File image2017-7-26_11-6-11.png Feb 20, 2019 by Keong Lim
File haproxy.cfg Feb 20, 2019 by Keong Lim
File Execute Named Query.postman_collection.json Feb 20, 2019 by Keong Lim
File data-complex.json Feb 20, 2019 by Keong Lim
File createDbSchemaLocal.sh Feb 20, 2019 by Keong Lim
File Add Widget Models.postman_collection.json Feb 20, 2019 by Keong Lim
File Add Instances for Named Query.postman_collection.json Feb 20, 2019 by Keong Lim
File Add_Widget_Models.postman_collection.json Mar 17, 2019 by Venkata Harish Kajur
File Add_Instanes_for_Named_Query.postman_collection.json Mar 17, 2019 by Venkata Harish Kajur
File aai.pem Apr 24, 2019 by James Forsyth

  • No labels

3 Comments

  1. conlin lee I think you were looking for the cert which is attached to this page.

  2. James Forsyth In step 10.c I get the following error. Using Dublin branch, Please let me know what could cause this.


    [INFO] --- exec-maven-plugin:1.6.0:java (run-spring-boot) @ aai-resources ---
    2019-09-30 11:10:26.950 INFO --- [urcesApp.main()] org.onap.aai.util.AAIConfig : Initializing AAIConfig
    2019-09-30 11:10:26.957 DEBUG --- [urcesApp.main()] org.onap.aai.util.AAIConfig : Reloading config from ./src/main/resources/etc/appprops/aaiconfig.properties
    [WARNING]
    java.lang.ExceptionInInitializerError
    at org.onap.aai.util.AAIConfig.reloadConfig (AAIConfig.java:108)
    at org.onap.aai.util.AAIConfig.init (AAIConfig.java:73)
    at org.onap.aai.ResourcesApp.main (ResourcesApp.java:142)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:498)
    at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:282)
    at java.lang.Thread.run (Thread.java:748)
    Caused by: java.lang.RuntimeException: Failed to load error.properties file
    at org.onap.aai.logging.ErrorLogHelper.<clinit> (ErrorLogHelper.java:66)
    at org.onap.aai.util.AAIConfig.reloadConfig (AAIConfig.java:108)
    at org.onap.aai.util.AAIConfig.init (AAIConfig.java:73)
    at org.onap.aai.ResourcesApp.main (ResourcesApp.java:142)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:498)
    at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:282)
    at java.lang.Thread.run (Thread.java:748)
    Caused by: java.io.FileNotFoundException: ./src/main/resources/etc/appprops/error.properties (No such file or directory)
    at java.io.FileInputStream.open0 (Native Method)
    at java.io.FileInputStream.open (FileInputStream.java:195)
    at java.io.FileInputStream.<init> (FileInputStream.java:138)
    at java.io.FileInputStream.<init> (FileInputStream.java:93)
    at org.onap.aai.logging.ErrorLogHelper.loadProperties (ErrorLogHelper.java:85)
    at org.onap.aai.logging.ErrorLogHelper.<clinit> (ErrorLogHelper.java:64)
    at org.onap.aai.util.AAIConfig.reloadConfig (AAIConfig.java:108)
    at org.onap.aai.util.AAIConfig.init (AAIConfig.java:73)
    at org.onap.aai.ResourcesApp.main (ResourcesApp.java:142)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:498)
    at org.codehaus.mojo.exec.ExecJavaMojo$1.run (ExecJavaMojo.java:282)
    at java.lang.Thread.run (Thread.java:748)
    [WARNING] thread Thread[logback-1,5,org.onap.aai.ResourcesApp] was interrupted but is still alive after waiting at least 15000msecs
    [WARNING] thread Thread[logback-1,5,org.onap.aai.ResourcesApp] will linger despite being asked to die via interruption
    [WARNING] NOTE: 1 thread(s) did not finish despite being asked to via interruption. This is not a problem with exec:java, it is a problem with the running code. Although not serious, it should be remedied.
    [WARNING] Couldn't destroy threadgroup org.codehaus.mojo.exec.ExecJavaMojo$IsolatedThreadGroup[name=org.onap.aai.ResourcesApp,maxpri=10]
    java.lang.IllegalThreadStateException
    at java.lang.ThreadGroup.destroy (ThreadGroup.java:778)
    at org.codehaus.mojo.exec.ExecJavaMojo.execute (ExecJavaMojo.java:321)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:956)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:288)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:192)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:498)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:289)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:229)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:415)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:356)
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 25.800 s
    [INFO] Finished at: 2019-09-30T11:10:41Z
    [INFO] ------------------------------------------------------------------------
    [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.6.0:java (run-spring-boot) on project aai-resources: An exception occured while executing the Java class. null: ExceptionInInitializerError: Failed to load error.properties file: ./src/main/resources/etc/appprops/error.properties (No such file or directory) -> [Help 1]
    [ERROR]
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    [ERROR]
    [ERROR] For more information about the errors and possible solutions, please read the following articles:
    [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

  3. Is there an updated document for AAI Developer Environment Setup? The version being used here and I could all find was that of "Dublin" which is quite old and Iam facing multiple issues with Java while building the microservices. Any leads would be appreciated.