Dremio OSS default creds

Unable to see from the docs if there is an existing username and password for dremio oss or if there is a way to create one as part of the docker run command - I’d like to run some integration testing without first creating a user via the UI. Thanks!

You can run a REST API command to create the first user:

curl 'http://localhost:9047/apiv2/bootstrap/firstuser' -X PUT \
      -H 'Authorization: _dremionull' -H 'Content-Type: application/json' \
     --data-binary \ 
     '{"userName":"your_username","firstName":"your_fname","lastName":"your_lname","email":"your_email","createdAt":1526186430755,"password":"your_password"}'
1 Like

Thanks Lenoy, that’s working well.