Re: Could not alias [g] to [g] as [g]


Yamiteru XYZ <yamit...@...>
 

This is my docker-compose.yml

version: "3"

services:
graph:
image: janusgraph/janusgraph:0.5.2
environment:
JANUS_PROPS_TEMPLATE: cassandra-es
janusgraph.storage.backend: cql
janusgraph.storage.hostname: db
janusgraph.index.search.hostname: index
ports:
- "8182:8182"
- "8184:8184"
depends_on:
- db
- index
db:
image: scylladb/scylla:4.2.1
ports:
# REST API
- "10000:10000"
# CQL
- "9042:9042"
# Thrift
- "9160:9160"
# Internode
- "7000:7000"
- "7001:7001"
# JMX
- "7199:7199"
# Prometheus
- "9180:9180"
- "9100:9100"
volumes:
- ./data/db/data:/var/lib/db
index:
image: docker.elastic.co/elasticsearch/elasticsearch:6.6.0
environment:
- discovery.type=single-node
- http.host=0.0.0.0
- transport.host=127.0.0.1
ports:
- "9200:9200"
- "9300:9300"
volumes:
- ./data/index/data:/usr/share/index/data

On Tuesday, January 5, 2021 at 2:33:55 PM UTC+1 HadoopMarc wrote:
OK, I understand now what you mean with "I see this error only on my server ". What happens if you try to open a websocket connection with a test webscocket client, e.g. for firefox:


It might be that the server does not have an open 8182 port. For less wilder guesses, I really need more information (client stacktrace, server logs, etc).

Best wishes,     Marc
Op dinsdag 5 januari 2021 om 12:38:27 UTC+1 schreef ya...@...:
I'm using the docker version and I haven't changed anything. Where do I find the yaml config? I've tested it on 2 PC's (ubuntu and windows) and it works without a problem. It doesn't work only on a server (ubuntu).

On Monday, January 4, 2021 at 5:37:37 PM UTC+1 HadoopMarc wrote:
Hi,

Can you show the gremlin server yaml config file (part of janusgraph) as well as the groovy script file it refers to? The groovy script should define the GraphTraversalSource g that you want to bind to.

Best wishes,     Marc

Op zondag 3 januari 2021 om 23:56:20 UTC+1 schreef ya...@...:
Hi, I have JanusGraph with Scylla and Elasticsearch in a docker. I'm connecting to JanusGraph on backend using gremlin.

I see this error only on my server and not on my local machine. What does it mean and more importantly how do I fix it? I'm a noob when it comes to backend and database stuff so please be kind. Thank you.


Join {janusgraph-users@lists.lfaidata.foundation to automatically receive all group messages.