Problem
Why is the Gremlin Language not allowed in OrientDB-Studio when I've set the parameter to allow?
I had this working before I recreated, but now when I follow the steps I still get denied Gremlin.
If you know what I'm doing wrong in my steps, or how I can ask the question better, Please let me know in the comments, so I can improve the Stack Overflow questions.
Reproduction
Repo Steps
- Create an OrientDB Docker-container
- Edit its
/orientdb/config/orientdb-server-config.xml- From:
<parameter name="allowedLanguages" value="SQL"/> - To:
<parameter name="allowedLanguages" value="SQL,GREMLIN"/>
- From:
- Startup this OrientDB container
- Login to a OrientDB-database on OrientDB-Studio
- Execute-and-Verify
SELECT count(*) FROM `V`SQL-Command - Execute-and-Verify
g.V().count()Gremlin-Command - Results
- Expected:
g.V().count()would printout - Actually: Error Toast-Message
java.lang.IllegalArgumentException: Cannot find a script executor requester for language: gremlin
- Expected:
Tried
- Deleting-and-recreating Docker-container
- Restarting Docker-container (after editing-and-saving)
- This works for Neo4j's Docker-container to startup, due to startup procedure
- Stopping-and-Starting Docker-container (after editing-and-saving)
