We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 969de6e commit ecd3715Copy full SHA for ecd3715
docker/start_db.sh
@@ -87,12 +87,15 @@ done
87
88
set +e
89
for a in ${COORDINATORS[*]} ; do
90
+ echo ""
91
+ echo "Setting username and password..."
92
docker run --rm ${DOCKER_IMAGE} arangosh --server.endpoint="$ARANGOSH_SCHEME://$a" --server.authentication=false --javascript.execute-string='require("org/arangodb/users").update("root", "test")'
93
done
94
set -e
95
96
97
echo ""
98
+ echo "Requesting endpoint version..."
99
curl -u root:test --insecure --fail "$SCHEME://$a/_api/version"
100
101
0 commit comments