当前位置:网站首页>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]所创,转载请带上原文链接,感谢
边栏推荐
- 看一遍就理解,图解单链表反转
- Kubernetes服务类型浅析:从概念到实践
- static+代码块+多态+异常
- 年薪90万程序员不如月入3800公务员?安稳与高收入,到底如何选择?
- The most hard core of the whole network explains the computer startup process
- 尾-递
- Data transmission of asynchronous serial communication controlled by group bus communication
- 当 TiDB 与 Flink 相结合:高效、易用的实时数仓
- On the coverage technology and best practice of go code
- 你可能不知道的Animation动画技巧与细节
猜你喜欢
随机推荐
使用 Xunit.DependencyInjection 改造测试项目
构造请求日志分析系统
Awk implements SQL like join operation
Cpp(四) Boost安装及基本使用 for Mac
Improvement of maintenance mode of laravel8 update
京淘项目day09
手撕算法-手写单例模式
我是如何失去团队掌控的?
工作1-3年的程序员,应该具备怎么样的技术能力?该如何提升?
websocket+probuf.原理篇
Jingtao project day09
The emergence and significance of micro service
Reflection on a case of bus card being stolen and swiped
Data transmission of asynchronous serial communication controlled by group bus communication
Python 图片识别 OCR
使用jsDelivr加速你的网站
High concurrency in ngnix cluster
栈-括号的匹配
Code Review最佳实践
Summary of the resumption of a 618 promotion project







![[C + + learning notes] how about the simple use of the C + + standard library STD:: thread?](/img/3e/3e7bc16c04d0d0ea953e2f739137d3.jpg)

