I am trying to install of Sentry On Premis 20.12.1 in Ubuntu 18.04 virtual box.
When I run the install.sh
script, I faced the following issue -
- Error
ERROR: for snuba-cleanup UnixHTTPConnectionPool(host='localhost', port=None): Pool is closed.
Couldn't connect to Docker daemon at http+docker://localhost - is it running?
If it's at a non-standard location, specify the URL with the DOCKER_HOST environment variable.
An error occurred, caught SIGERR on line 227
Cleaning up...
- Configuration:
- I also didn’t get what to put in db password and db port
sentry.conf.py
file
DATABASES = {
"default": {
"ENGINE": "sentry.db.postgres",
"NAME": "postgres",
"USER": "postgres",
"PASSWORD": "",
"HOST": "postgres",
"PORT": "",
}
}
- As per README -
The recommended way to customize your configuration is using the files below, in that order:
* `config.yml`
* `sentry.conf.py`
* `.env` w/ environment variables
So I put sentry.conf.py
, conf.yml
file with .env
but after running the script, it generates new sentry.conf.py
, conf.yml
in sentry folder.
- There is another observation - getting error from Docker pull
“You have reached your pull rate limit”
- Also I got -
Docker: Having issues installing apt-utils
Can anyone please help me how to setup the configuration and setup sentry on premise.