diff options
author | Alexandre Flament <alex@al-f.net> | 2022-11-11 21:58:32 +0100 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2022-12-10 09:26:38 +0100 |
commit | b971167ced9623c038188ae7bf5a8085147bc35d (patch) | |
tree | d82d7fb4bad9d67b048bce8985cc4a3f09268503 /docs | |
parent | 34e260f88f561cf26454fe72a10a3a403faf2ff3 (diff) | |
download | searxng-b971167ced9623c038188ae7bf5a8085147bc35d.tar.gz searxng-b971167ced9623c038188ae7bf5a8085147bc35d.zip |
move searx.shared.redisdb to searx.redisdb
Diffstat (limited to 'docs')
-rw-r--r-- | docs/admin/engines/settings.rst | 2 | ||||
-rw-r--r-- | docs/admin/installation-uwsgi.rst | 4 | ||||
-rw-r--r-- | docs/admin/update-searxng.rst | 3 | ||||
-rw-r--r-- | docs/src/searx.redisdb.rst (renamed from docs/src/searx.shared.redisdb.rst) | 2 |
4 files changed, 5 insertions, 6 deletions
diff --git a/docs/admin/engines/settings.rst b/docs/admin/engines/settings.rst index 3ac992d3e..c747e3f43 100644 --- a/docs/admin/engines/settings.rst +++ b/docs/admin/engines/settings.rst @@ -294,7 +294,7 @@ Global Settings .. _Redis.from_url(url): https://redis-py.readthedocs.io/en/stable/connections.html#redis.client.Redis.from_url -A redis DB can be connected by an URL, in :py:obj:`searx.shared.redisdb` you +A redis DB can be connected by an URL, in :py:obj:`searx.redisdb` you will find a description to test your redis connection in SerXNG. When using sockets, don't forget to check the access rights on the socket:: diff --git a/docs/admin/installation-uwsgi.rst b/docs/admin/installation-uwsgi.rst index a6ea85608..e888d067e 100644 --- a/docs/admin/installation-uwsgi.rst +++ b/docs/admin/installation-uwsgi.rst @@ -239,8 +239,8 @@ For example on Fedora (RHEL): If you try to install a redis DB with socket communication and you want to connect to it from the SearXNG uWSGI, you will see a *Permission denied* in the log of your instance:: - ERROR:searx.shared.redis: [searxng (993)] can't connect redis DB ... - ERROR:searx.shared.redis: Error 13 connecting to unix socket: /usr/local/searxng-redis/run/redis.sock. Permission denied. + ERROR:searx.redisdb: [searxng (993)] can't connect redis DB ... + ERROR:searx.redisdb: Error 13 connecting to unix socket: /usr/local/searxng-redis/run/redis.sock. Permission denied. ERROR:searx.plugins.limiter: init limiter DB failed!!! Even if your *searxng* user of the uWSGI process is added to additional groups diff --git a/docs/admin/update-searxng.rst b/docs/admin/update-searxng.rst index 6c199638a..0d7b5e1b8 100644 --- a/docs/admin/update-searxng.rst +++ b/docs/admin/update-searxng.rst @@ -132,5 +132,4 @@ to see if there are some left overs. In this example there exists a *old* INFO: [OK] (old) account 'filtron' does not exists INFO: [OK] (old) account 'morty' does not exists ... - INFO searx.shared : Use shared_simple implementation - INFO searx.shared.redis : connected redis DB --> default + INFO searx.redisdb : connected redis DB --> default diff --git a/docs/src/searx.shared.redisdb.rst b/docs/src/searx.redisdb.rst index 265d87617..625378c91 100644 --- a/docs/src/searx.shared.redisdb.rst +++ b/docs/src/searx.redisdb.rst @@ -4,5 +4,5 @@ Redis DB ======== -.. automodule:: searx.shared.redisdb +.. automodule:: searx.redisdb :members: |