当前位置:网站首页>Sentry installation
Sentry installation
2020-11-07 20:56:00 【Coxhuang】
List of articles
- Docker install Sentry
- #1 Environmental Science
- #2 Start
- #2.1 install Docker
- #2.2 Installation dependency
- #2.3 start-up
Docker install Sentry
#1 Environmental Science
Docker
#2 Start
#2.1 install Docker
A little
#2.2 Installation dependency
- Pull redis
docker pull redis
- Pull postsql
docker pull postgres
- Pull sentry
docker pull sentry
#2.3 start-up
- start-up redis
docker run -d --name sentry-redis redis
- start-up postgres
docker run -d --name sentry-postgres -e POSTGRES_PASSWORD=secret -e POSTGRES_USER=sentry postgres
- start-up sentry
docker run --rm sentry config generate-secret-key
Returns a string of random keys : +ga&o_@ctj*hsu91zwdwm4_715+kped+_68sq)ysmvt8(wi+
Use the secret key to perform the following operations :
# <secret-key> Replace with the secret key generated in the previous step docker run -it --rm -e SENTRY_SECRET_KEY='<secret-key>' --link sentry-postgres:postgres --link sentry-redis:redis sentry upgrade
A long wait …
A long wait …
A long wait …
# <secret-key> Replace with the secret key generated in the previous step docker run -d -p 9000:9000 --name my-sentry -e SENTRY_SECRET_KEY='<secret-key>' --link sentry-redis:redis --link sentry-postgres:postgres sentry
# <secret-key> Replace with the secret key generated in the previous step docker run -d --name sentry-cron -e SENTRY_SECRET_KEY='<secret-key>' --link sentry-postgres:postgres --link sentry-redis:redis sentry run cron
# <secret-key> Replace with the secret key generated in the previous step docker run -d --name sentry-worker-1 -e SENTRY_SECRET_KEY='<secret-key>' --link sentry-postgres:postgres --link sentry-redis:redis sentry run worker
installation is complete !!!
Participation of this paper Tencent cloud media sharing plan , You are welcome to join us , share .
版权声明
本文为[Coxhuang]所创,转载请带上原文链接,感谢
边栏推荐
猜你喜欢
随机推荐
Practice of Xiaoxiong school development board: real equipment access of smart street lamp sandbox experiment
Recommend suicide, openai warns: gpt-3 is too risky for medical purposes
[original] the influence of arm platform memory and cache on the real-time performance of xenomai
如何高效的学习技术
Ubuntu下搜狗输入法的下载安装及配置
使用jsDelivr加速你的网站
Do not understand the underlying principle of database index? That's because you don't have a B tree in your heart
「混合云」会是云计算的下一个战场吗?
Code Review最佳实践
爆一个VS2015 Update1更新带来的编译BUG【已有解决方案】
30岁后,你还剩下什么?
Got timeout reading communication packets解决方法
laravel8更新之维护模式改进
看一遍就理解,图解单链表反转
Awk implements SQL like join operation
分享几个我日常使用的VS Code插件
Using pipe() to improve code readability in pandas
Kubernetes服务类型浅析:从概念到实践
Cpp(三) 什么是CMake
Big data algorithm - bloon filter







