1
0
-1

Hi All,


I have a specific requirement for loading the SDC portal, and was following the instructions in here : Building and running SDC using Docker for OSX

As per the comment, I had too big errors, and fixed that.

Completing the other tasks, this is the start of the docker container, and I only manage to get 5 out of the 9 or so loaded.

sdc-os-chef/scripts/docker_run.sh -e AUTO -l


docker ps | awk '{{print $2}}'

ID

onap/sdc-frontend:latest

onap/sdc-backend:latest

onap/sdc-onboard-backend:latest

onap/sdc-cassandra:latest

onap/sdc-elasticsearch:latest


The health check looks like this

{
  "sdcVersion": "1.3.0-SNAPSHOT",
  "siteMode": "unknown",
  "componentsInfo": [
    {
      "healthCheckComponent": "DMAPP",
      "healthCheckStatus": "DOWN",
      "version": "1.3.0-SNAPSHOT",
      "description": "DOWN"
    },
    {
      "healthCheckComponent": "BE",
      "healthCheckStatus": "UP",
      "version": "1.3.0-SNAPSHOT",
      "description": "OK"
    },
    {
      "healthCheckComponent": "TITAN",
      "healthCheckStatus": "UP",
      "description": "OK"
    },
    {
      "healthCheckComponent": "ES",
      "healthCheckStatus": "UP",
      "version": "1.3.0-SNAPSHOT",
      "description": "OK"
    },
    {
      "healthCheckComponent": "DE",
      "healthCheckStatus": "DOWN",
      "description": "U-EB cluster is not available"
    },
    {
      "healthCheckComponent": "CASSANDRA",
      "healthCheckStatus": "UP",
      "description": "OK"
    },
    {
      "healthCheckComponent": "ON_BOARDING",
      "healthCheckStatus": "UP",
      "version": "1.3.0-SNAPSHOT",
      "description": "OK",
      "componentsInfo": [
        {
          "healthCheckComponent": "ZU",
          "healthCheckStatus": "UP",
          "description": "OK"
        },
        {
          "healthCheckComponent": "BE",
          "healthCheckStatus": "UP",
          "version": "1.3.0-SNAPSHOT",
          "description": "OK"
        },
        {
          "healthCheckComponent": "CAS",
          "healthCheckStatus": "UP",
          "version": "2.1.17",
          "description": "OK"
        },
        {
          "healthCheckComponent": "FE",
          "healthCheckStatus": "UP",
          "version": "1.3.0-SNAPSHOT",
          "description": "OK"
        }
      ]
    },
    {
      "healthCheckComponent": "DCAE",
      "healthCheckStatus": "DOWN",
      "description": "Component BE is Down, Component FE is Down,",
      "componentsInfo": [
        {
          "healthCheckComponent": "BE",
          "healthCheckStatus": "DOWN",
          "description": "DCAE unexpected response: Execute request GET http://192.168.3.35:8082/dcae/healthCheck HTTP/1.1 failed with exception: Connect to 192.168.3.35:8082 [/192.168.3.35] failed: Connection refused (Connection refused)"
        },
        {
          "healthCheckComponent": "FE",
          "healthCheckStatus": "DOWN",
          "description": "DCAE Unexpected response: Execute request GET http://192.168.3.35:8183/dcaed/healthCheck HTTP/1.1 failed with exception: Connect to 192.168.3.35:8183 [/192.168.3.35] failed: Connection refused (Connection refused)"
        }
      ]
    },
    {
      "healthCheckComponent": "FE",
      "healthCheckStatus": "UP",
      "version": "1.3.0-SNAPSHOT",
      "description": "OK"
    }
  ]
}


When I compare this to the note on the troubleshooting page : SDC Troubleshooting

The above health check is checking the DCAE and the DMAPP components, but I can find no reference to these in the SDC build thus far.

Is it possible to just build the SDC as per the instructions on the first linked page, or are their a number of other requisites required that I am missing?


I see that there is a DCAE-BE log directory created using the script, but have no log data in there.


$ ls -tlr data/logs/DCAE-BE/DCAE

APMR-MSTAFFOR-3:sdc mstaffor$

I have the log files from the mvn install and the sdc docker.sh runs if these can provide more information.

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      the dcae-ds is a separate optional component that handles monitoring modeling.

      you can work with sdc with out it.

        CommentAdd your comment...