How to configure self hosted sentry with admin password?

Viewed 1914

I need to setup sentry with docker. Thats why I don't want to be asked for user creation during the installation process. Hence I used following command to install sentry.

./install.sh --no-user-prompt

In the config file config.example.yml I also set following values. Unfortunately I cant login.

system.secret-key: 'somesupersecretkey'
system.admin-email: 'somemail@adress.com'

How do I have to change the config file to have a user set up. And what ist the system.secrey-key for anyway?

1 Answers

There is no default username or password it prompts you to create a new user during installation.

If you skipped that step or used an unattended installation, you can run docker-compose run --rm web createuser to create one

Default username & password

Related