Need Help starting DSE Graph

63 Views Asked by At

When I type in the following command "dse gremlin-console" the system tries to start but then i get the following error: Exception in thread "main" java.awt.AWTError: Asssitive Technology not found: org.GNOME.Accessibility.AtkWrapper

Do i need to update my Java version?

1

There are 1 best solutions below

0
Alex Ott On

This is a known issue with Docker images that should be eventually fixed.

The linked issue has 2 workarounds:

  1. Install openjdk-8-jdk into Docker image after it's started
  2. Disable assistive technologies for OpenJDK with something like this:
docker-compose exec --user root dse bash -l \
  -c "sed -i -e '/^assistive_technologies=/s/^/#/' /etc/java-*-openjdk/accessibility.properties"