]> git.immae.eu Git - github/wallabag/wallabag.git/blame - docs/de/developer/rabbitmq.rst
Added the whole path to parameters.yml file
[github/wallabag/wallabag.git] / docs / de / developer / rabbitmq.rst
CommitLineData
080cb52f
SF
1Installiere RabbitMQ für asynchrone Aufgaben
2============================================
3
4Um asynchrone Aufgaben zu starten (nützlich z.B. für große Imports), können wir RabbitMQ nutzen.
5
6Voraussetzungen
2d8af6fc 7---------------
080cb52f
SF
8
9Du musst RabbitMQ auf deinem Server installiert haben.
10
11Installation
12~~~~~~~~~~~~
13
14.. code:: bash
15
16 wget https://www.rabbitmq.com/rabbitmq-signing-key-public.asc
17 apt-key add rabbitmq-signing-key-public.asc
18 apt-get update
19 apt-get install rabbitmq-server
20
21Konfiguration und Starten
22~~~~~~~~~~~~~~~~~~~~~~~~~
23
24.. code:: bash
25
26 rabbitmq-plugins enable rabbitmq_management # (useful to have a web interface, available at http://localhost:15672/ (guest/guest)
27 rabbitmq-server -detached
28
29RabbitMQ stoppen
2d8af6fc 30~~~~~~~~~~~~~~~
080cb52f
SF
31
32.. code:: bash
33
34 rabbitmqctl stop
35
36
37Konfigure RabbitMQ in wallabag
38------------------------------
39
37da1786 40Bearbeite die Datei ``app/config/parameters.yml``, um die RabbitMQ Konfiguration einzurichten. Die Standardkonfiguration sollte ok sein:
080cb52f
SF
41
42.. code:: yaml
43
44 rabbitmq_host: localhost
45 rabbitmq_port: 5672
46 rabbitmq_user: guest
47 rabbitmq_password: guest
48
fa4c39b3
NL
49Enable RabbitMQ in wallabag
50---------------------------
51
52In internal settings, in the **Import** section, enable RabbitMQ (with the value 1).
080cb52f
SF
53
54Starte den RabbitMQ Consumer
2d8af6fc 55----------------------------
080cb52f
SF
56
57Abhängig von welchem Service du importieren möchtest, solltest du einen Cron Job aktivieren (oder mehrere, wenn du viele unterstützen willst):
58
59.. code:: bash
60
61 # for Pocket import
ba692168 62 bin/console rabbitmq:consumer -e=prod import_pocket -w
080cb52f 63
2d8af6fc 64 # for Readability import
ba692168 65 bin/console rabbitmq:consumer -e=prod import_readability -w
080cb52f 66
2d8af6fc 67 # for Instapaper import
ba692168 68 bin/console rabbitmq:consumer -e=prod import_instapaper -w
2d8af6fc 69
080cb52f 70 # for wallabag v1 import
ba692168 71 bin/console rabbitmq:consumer -e=prod import_wallabag_v1 -w
080cb52f
SF
72
73 # for wallabag v2 import
ba692168 74 bin/console rabbitmq:consumer -e=prod import_wallabag_v2 -w
2d8af6fc
NL
75
76 # for Firefox import
ba692168 77 bin/console rabbitmq:consumer -e=prod import_firefox -w
2d8af6fc
NL
78
79 # for Chrome import
ba692168 80 bin/console rabbitmq:consumer -e=prod import_chrome -w
2d8af6fc 81