0

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?

Alex Ott
  • 80,552
  • 8
  • 87
  • 132
Siguy12
  • 1
  • 1

1 Answers1

0

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"
Alex Ott
  • 80,552
  • 8
  • 87
  • 132