docker-compose 기반 로컬sentry 서비스 구축
docker-compose 설치
``
$ curl -L https://get.daocloud.io/docker/compose/releases/download/1.24.1/docker-compose-
uname -s -
uname -m` >/usr/local/bin/docker-compose $ chmod +x/usr/local/bin/docker-compose
or
$ yum install python-pip
$ pip install docker-compose
or $ curl -L --fail https://github.com/docker/compose/releases/download/1.24.1/run.sh >/usr/local/bin/docker-compose $ sudo chmod +x/usr/local/bin/docker-compose ```
1.git는 현재/data/sentry로 가정하고 이 디렉터리에 들어갑니다.
git clone https://github.com/getsentry/onpremise.git , onpremise。
2. 사전 설치 구성
cd onpremise/sentry cp config.example.yml config.yml smtp # mail.backend: 'smtp' # Use dummy if you want to disable email entirely mail.host: 'smtp.163.com' mail.port: 25 mail.username: '[email protected]' mail.password: 'xxxx' mail.use-tls: false #The email address to send on behalf of mail.from: '[email protected]'
3. 직접 실행합니다./install.sh
, docker-compose : docker-compose up -d docker-compose ps : Name Command State Ports --------------------------------------------------------------------------------------- onpremise_base_1 /entrypoint.sh run web Up 9000/tcp onpremise_cron_1 /entrypoint.sh run cron Up 9000/tcp onpremise_memcached_1 docker-entrypoint.sh memcached Up 11211/tcp onpremise_postgres_1 docker-entrypoint.sh postgres Up 5432/tcp onpremise_redis_1 docker-entrypoint.sh redis ... Up 6379/tcp onpremise_smtp_1 entrypoint.sh tini -- exim ... Up 25/tcp onpremise_web_1 /entrypoint.sh run web Up 0.0.0.0:9000->9000/tcp onpremise_worker_1 /entrypoint.sh run worker Up 9000/tcp {ip}:9000, 。
4.기타
, docker-compose.yml web , 8888 :
web:
extends: base
links:
- redis
- postgres
- memcached
- smtp
ports:
- '8888:9000'
systemd ,docker-compose :
docker-compose up # , , -d
docker-compose stop #
docker-compose start # , up
docker :
config.yal
sentry.conf.py, smtp :
SENTRY_OPTIONS['mail.backend'] = 'smtp'
SENTRY_OPTIONS['mail.host'] = 'smtp.***.com'
SENTRY_OPTIONS['mail.password'] = '*******'
SENTRY_OPTIONS['mail.username'] = 'sentry@**.com'
SENTRY_OPTIONS['mail.port'] = 25
SENTRY_OPTIONS['mail.use-tls'] = False
docker-compose down( )
docker-compose build ( )
docker-compose up -d ( )
ok
:centos firewalld, firewalld docker , firewalld :
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" port protocol="tcp" port="9000" accept"
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address=" ip" accept"
firewall-cmd --permanent --zone=trusted --change-interface=docker0
firewall-cmd --permanent --zone=trusted --add-port=9000/tcp
firewall-cmd --add-port=9000/tcp --permanent
Updating Sentry
Updating Sentry using Compose is relatively simple. Just use the following steps to update. Make sure that you have the latest version set in your Dockerfile. Or use the latest version of this repository.
Use the following steps after updating this repository or your Dockerfile:
docker-compose build --pull # Build the services again after updating, and make sure we're up to date on patch version
docker-compose run --rm web upgrade # Run new migrations
docker-compose up -d # Recreate the services
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.