当前位置:网站首页>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]所创,转载请带上原文链接,感谢
边栏推荐
- [C + + learning notes] how about the simple use of the C + + standard library STD:: thread?
- 计组-总线通信控制之异步串行通信的数据传输
- 获取树形菜单列表
- What is the relationship between low code vs model driven?
- 手撕算法-手写单例模式
- [random talk] the goal and way of software design
- Exploration and practice of growingio responsive programming
- 某618大促项目的复盘总结
- Static + code block + polymorphism + exception
- 看一遍就理解,图解单链表反转
猜你喜欢

三步一坑五步一雷,高速成长下的技术团队怎么带?

使用 Xunit.DependencyInjection 改造测试项目

Animation techniques and details you may not know

Got timeout reading communication packets解决方法

如何高效的学习技术

来自不同行业领域的50多个对象检测数据集

A detailed explanation of microservice architecture

在pandas中使用pipe()提升代码可读性

Don't treat exceptions as business logic, which you can't afford

Do not understand the underlying principle of database index? That's because you don't have a B tree in your heart
随机推荐
Stack bracket matching
Cpp(四) Boost安装及基本使用 for Mac
What is the relationship between low code vs model driven?
The emergence and significance of micro service
「混合云」会是云计算的下一个战场吗?
爆一个VS2015 Update1更新带来的编译BUG【已有解决方案】
聊聊Go代码覆盖率技术与最佳实践
Adobe media encoder / me 2021 software installation package (with installation tutorial)
On the coverage technology and best practice of go code
In the age of screen reading, we suffer from attention deficit syndrome
IDEA-项目未自动生成 .iml 文件
当 TiDB 与 Flink 相结合:高效、易用的实时数仓
laravel8更新之维护模式改进
如何高效的学习技术
easyui dialog“缓存问题”
计组-总线通信控制之异步串行通信的数据传输
一万四千字分布式事务原理解析,全部掌握你还怕面试被问?
WPF 关于绘图个人总结
Three steps, one pit, five steps and one thunder, how to lead the technical team under the rapid growth?
栈-括号的匹配