I am able to create a user using by following what the doc says:
curl -X POST --user root:root --data-binary @- --dump - http://localhost:8529/_api/user <<EOF
{
"user" : "testUser",
"password" : "secure"
}
EOF
But the password argument seems to be ignored by Arango.
curl -v --user testUser:secure http://localhost:8529/_api/user/testUser
Returns a 401
While:
curl -v --user testUser: http://localhost:8529/_api/user/testUser
Returns a 200
Am I doing anything wrong here?