RippleOSI / Ripple-Showcase-Stack-Project

repo for Showcase Stack (PulseTile+ QEWDjs + EtherCIS) - Project issues
Apache License 2.0
0 stars 0 forks source link

Error accured after moving Showcase project on AWS #104

Open kuvakina opened 4 years ago

kuvakina commented 4 years ago

We moved Showcase.r.f on AWS, and it's here now: https://showcase-stack-demo.ripple.foundation/

We made everything according to the steps provided by Dima (Dima tested them himself and there weren't any problems). But we got this error: Снимок экрана 2020-01-13 в 16 45 18 Снимок экрана 2020-01-14 в 16 23 41

client_id parameter we meet here: https://github.com/QEWD-Courier/Ripple-Qewd-MS , when configuring access to Discovery Data Service afaik

I believed we had this error previously and Rob helped out, but I couldn't find related tasks.

And if it helps, we have the error before we get to login.

kuvakina commented 4 years ago

The problem was in Node versions: When we run container, it downloads Node last version: in Rob's containers it's 12, but on the project, we have 10.14. From here https://hub.docker.com/r/rtweed/qewd-server/tags we have to use version, that was updated 3 months ago, more recent versions are not working with Showcase.

Dima and Vladimir changed it and it's working now and we can login.

But now we met another issue after we logged in: https://www.screencast.com/t/2Ty8WJ18- project doesn't see mpi_services. We'll take a look at why this happened

kuvakina commented 4 years ago

The issue we had with mpi_service is solved now.

The problem was in docker setups. We had (and with this it's not worked):

image: rtweed/qewd-server
container_name: mpi_service
environment:
  - mode="microservice"

And changed it to:

image: rtweed/qewd-server:yottadb_1.24
container_name: mpi_service
environment:
  mode: microservice

This solved the issue.