2020-02-03 12:25:51 +00:00
|
|
|
.. _searx_utils:
|
2020-02-04 12:13:17 +00:00
|
|
|
.. _toolboxing:
|
2020-02-03 12:25:51 +00:00
|
|
|
|
2021-04-24 15:03:10 +00:00
|
|
|
===================
|
|
|
|
Admin's tooling box
|
|
|
|
===================
|
2020-02-03 12:25:51 +00:00
|
|
|
|
2021-02-25 16:42:52 +00:00
|
|
|
In the folder :origin:`utils/` we maintain some tools useful for administrators.
|
2020-02-05 06:37:26 +00:00
|
|
|
|
2020-02-03 12:25:51 +00:00
|
|
|
.. toctree::
|
2020-02-04 15:42:13 +00:00
|
|
|
:maxdepth: 2
|
|
|
|
:caption: Contents
|
2020-02-03 12:25:51 +00:00
|
|
|
|
|
|
|
searx.sh
|
|
|
|
filtron.sh
|
|
|
|
morty.sh
|
2020-03-30 16:47:01 +00:00
|
|
|
lxc.sh
|
2020-02-03 12:25:51 +00:00
|
|
|
|
2020-02-04 12:13:17 +00:00
|
|
|
.. _toolboxing common:
|
|
|
|
|
2020-04-08 16:38:36 +00:00
|
|
|
Common commands & environment
|
|
|
|
=============================
|
2020-02-04 12:13:17 +00:00
|
|
|
|
|
|
|
Scripts to maintain services often dispose of common commands and environments.
|
|
|
|
|
2020-04-08 16:38:36 +00:00
|
|
|
``shell`` : command
|
2020-02-04 12:13:17 +00:00
|
|
|
Opens a shell from the service user ``${SERVICE_USSR}``, very helpful for
|
|
|
|
troubleshooting.
|
|
|
|
|
2020-04-08 16:38:36 +00:00
|
|
|
``inspect service`` : command
|
2020-02-04 12:13:17 +00:00
|
|
|
Shows status and log of the service, most often you have a option to enable
|
|
|
|
more verbose debug logs. Very helpful for debugging, but be careful not to
|
|
|
|
enable debugging in a production environment!
|
|
|
|
|
2020-04-08 16:38:36 +00:00
|
|
|
``FORCE_TIMEOUT`` : environment
|
|
|
|
Sets timeout for interactive prompts. If you want to run a script in batch
|
|
|
|
job, with defaults choices, set ``FORCE_TIMEOUT=0``. By example; to install a
|
2021-09-12 06:36:56 +00:00
|
|
|
reverse proxy for filtron on all containers of the :ref:`SearXNG suite
|
2020-04-08 16:38:36 +00:00
|
|
|
<lxc-searx.env>` use ::
|
|
|
|
|
|
|
|
sudo -H ./utils/lxc.sh cmd -- FORCE_TIMEOUT=0 ./utils/filtron.sh apache install
|
2020-12-13 14:20:33 +00:00
|
|
|
|
2020-02-04 12:13:17 +00:00
|
|
|
.. _toolboxing setup:
|
|
|
|
|
|
|
|
Tooling box setup
|
|
|
|
=================
|
|
|
|
|
2020-12-20 23:37:45 +00:00
|
|
|
The main setup is done in the :origin:`.config.sh` (read also :ref:`settings
|
|
|
|
global`).
|
2020-02-04 12:13:17 +00:00
|
|
|
|
|
|
|
.. literalinclude:: ../../.config.sh
|
|
|
|
:language: bash
|