Enable search and background tasks in a cluster
In the seafile cluster, only one server should run the background tasks, including:
- indexing files for search
- email notification
- office documents converts service
- LDAP sync
- virus scan
Let’s assume you have three nodes in your cluster: A, B, and C.
- Node A is backend node that run background tasks.
- Node B and C are frontend nodes that serving requests from clients.
If you following the steps on settings up a cluster, node B and node C should have already be configed as frontend node. You can copy the configuration of node B as a base for node A. Then do the following steps:
On Ubuntu/Debian:
On CentOS/Red Hat:
sudo yum install libreoffice libreoffice-headless libreoffice-pyuno
sudo yum install poppler-utils
Edit seafevents.conf and ensure this line does NOT exist:
external_es_server = true
OFFICE_CONVERTOR_NODE = True
Edit seafile.conf to enable virus scan according to virus scan document
Edit the firewall rules
In your firewall rules for node A, you should open the port 9200 (for search requests). For versions older than 6.1, es_port
was 9500.
On nodes B and C, you need to:
Edit seahub_settings.py and add a line:
Make sure requests to http://
server {
listen 80;
server_name <IP of node A>;
location / {
...
}
As a simple test, you can use this command to test if you set it up correctly.
curl -v http://<IP of node A>/office-convert/internal/status/
It should say “400 Bad Request” when you have Nginx config updated.
./seafile.sh start
./seahub.sh start # or "./seahub.sh start-fastcgi" if you're using fastcgi
./seafile-background-tasks.sh start
To stop the background node, type:
./seafile-background-tasks.sh stop
./seafile.sh stop
./seahub.sh stop
You should also configure Seafile background tasks to start on system bootup. For systemd based OS, you can add /etc/systemd/system/seafile-background-tasks.service
:
Then enable this task in systemd:
Here is the summary of configurations at the background node that related to clustering setup.
For seafile.conf:
[cluster]
enabled = true
For seahub_settings.py:
OFFICE_CONVERTOR_NODE = True
AVATAR_FILE_STORAGE = 'seahub.base.database_storage.DatabaseStorage'
COMPRESS_CACHE_BACKEND = 'django.core.cache.backends.locmem.LocMemCache'
For seafevents.conf:
[INDEX FILES]
enabled = true
interval = 10m
[OFFICE CONVERTER]
enabled = true
workers = 1
## how many pages are allowed to be previewed online. Default is 50 pages
max-pages = 50
## the max size of documents allowed to be previewed online, in MB. Default is 10 MB