summarylogtreecommitdiffstats
path: root/sentry.install
diff options
context:
space:
mode:
Diffstat (limited to 'sentry.install')
-rw-r--r--sentry.install14
1 files changed, 11 insertions, 3 deletions
diff --git a/sentry.install b/sentry.install
index 0b55e1035a68..44a0b8e000f3 100644
--- a/sentry.install
+++ b/sentry.install
@@ -87,10 +87,12 @@ and increasingly more options are being moved to Sentry's YAML-based configs:
sudo -u sentry mkdir /etc/sentry/temp
sudo -u sentry /opt/sentry/bin/sentry init /etc/sentry/temp
- # Optionally edit the old configuration:
+ # Optionally edit the old configurations:
sudo vimdiff /etc/sentry/sentry.conf.py /etc/sentry/temp/sentry.conf.py
+ sudo vimdiff /etc/sentry/config.yml /etc/sentry/temp/config.yml
- # Move Sentry's YAML configuration to the config root:
+ # ...or move Sentry's YAML configuration to the config root:
+ sudo -u sentry mv /etc/sentry/temp/sentry.conf.py /etc/sentry/
sudo -u sentry mv /etc/sentry/temp/config.yml /etc/sentry/
# Delete the temporary config directory:
@@ -107,12 +109,18 @@ and increasingly more options are being moved to Sentry's YAML-based configs:
4) Start Sentry:
- sudo systemctl start sentry sentry-celery
+ sudo systemctl start sentry
If you wish to run Sentry manually, e.g. to test your configuration:
sudo -u sentry /opt/sentry/bin/sentry --config=/etc/sentry run web
+You may need to run the following services if Sentry's web service fails
+during manual testing:
+
+ sudo -u sentry /opt/sentry/bin/sentry --config=/etc/sentry run worker
+ sudo -u sentry /opt/sentry/bin/sentry --config=/etc/sentry run cron
+
EXTRAS
To install additional plugins, you'll need to use Sentry's local copy of pip: