File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -17,5 +17,41 @@ systemctl status snuba
17
17
systemctl status relay
18
18
```
19
19
20
+ ## 3. Datenbank Initialisieren:
21
+ ```
22
+ sentry upgrade
23
+ ```
24
+
25
+ ## 4. Superuser erstellen:
26
+ ```
27
+ sentry createuser --email [email protected] --superuser
28
+ ```
29
+
30
+ ## 5. Sentry-Dienste manuel starten:
31
+ ```
32
+ systemctl start sentry-web
33
+ systemctl start sentry-worker
34
+ systemctl start sentry-cron
35
+ systemctl start sentry-relay
36
+ ```
37
+ logs überprüfen:
38
+ ```
39
+ journalctl -u sentry-web
40
+ journalctl -u sentry-worker
41
+ ```
42
+
43
+ ## 6. Relay Konfiguration:
44
+ ```
45
+ systemctl status sentry-relay
46
+ ```
20
47
48
+ ## 9. Firewall-Regeln
49
+ ```
50
+ sudo iptables -A INPUT -p tcp --dport 9000 -j ACCEPT
51
+ ```
21
52
53
+ ## 10. Überwachen der Dienste
54
+ ```
55
+ journalctl -u sentry-web -f
56
+ journalctl -u sentry-worker -f
57
+ ```
You can’t perform that action at this time.
0 commit comments