2020-02-03 12:25:51 +00:00
|
|
|
|
|
|
|
.. _morty: https://github.com/asciimoo/morty
|
|
|
|
.. _morty's README: https://github.com/asciimoo/morty
|
2020-03-30 16:47:01 +00:00
|
|
|
.. _Go: https://golang.org/
|
2020-02-03 12:25:51 +00:00
|
|
|
|
2020-02-04 12:13:17 +00:00
|
|
|
.. _morty.sh:
|
|
|
|
|
2020-02-03 12:25:51 +00:00
|
|
|
==================
|
|
|
|
``utils/morty.sh``
|
|
|
|
==================
|
|
|
|
|
2020-02-04 12:13:17 +00:00
|
|
|
.. sidebar:: further reading
|
|
|
|
|
|
|
|
- :ref:`architecture`
|
2020-04-09 13:04:23 +00:00
|
|
|
- :ref:`installation` (:ref:`nginx <installation nginx>` & :ref:`apache
|
|
|
|
<installation apache>`)
|
2020-04-03 18:26:20 +00:00
|
|
|
- :ref:`searx morty`
|
2020-02-04 12:13:17 +00:00
|
|
|
|
2020-02-03 12:25:51 +00:00
|
|
|
To simplify installation and maintenance of a morty_ instance you can use the
|
|
|
|
script :origin:`utils/morty.sh`. In most cases you will install morty_ simply by
|
|
|
|
running the command:
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
sudo -H ./utils/morty.sh install all
|
|
|
|
|
|
|
|
The script adds a ``${SERVICE_USER}`` (default:``morty``) and installs morty_
|
2020-03-30 16:47:01 +00:00
|
|
|
into this user account:
|
|
|
|
|
|
|
|
#. Create a separated user account (``morty``).
|
|
|
|
#. Download and install Go_ binary in user's $HOME (``~morty``).
|
|
|
|
#. Install morty_ with the package management from Go_ (``go get -v -u
|
|
|
|
github.com/asciimoo/morty``)
|
|
|
|
#. Setup a systemd service unit :origin:`[ref]
|
|
|
|
<utils/templates/lib/systemd/system/morty.service>`
|
|
|
|
(``/lib/systemd/system/morty.service``).
|
2020-02-03 12:25:51 +00:00
|
|
|
|
|
|
|
.. hint::
|
|
|
|
|
2021-09-12 06:36:56 +00:00
|
|
|
To add morty to your SearXNG instance read chapter :ref:`searx morty`.
|
2020-02-03 12:25:51 +00:00
|
|
|
|
2020-04-03 18:26:20 +00:00
|
|
|
Create user
|
|
|
|
===========
|
|
|
|
|
2020-06-18 16:52:45 +00:00
|
|
|
.. kernel-include:: $DOCS_BUILD/includes/morty.rst
|
2020-04-03 18:26:20 +00:00
|
|
|
:start-after: START create user
|
|
|
|
:end-before: END create user
|
|
|
|
|
|
|
|
|
|
|
|
Install go
|
|
|
|
==========
|
|
|
|
|
2020-06-18 16:52:45 +00:00
|
|
|
.. kernel-include:: $DOCS_BUILD/includes/morty.rst
|
2020-04-03 18:26:20 +00:00
|
|
|
:start-after: START install go
|
|
|
|
:end-before: END install go
|
|
|
|
|
|
|
|
|
|
|
|
Install morty
|
|
|
|
=============
|
|
|
|
|
|
|
|
Install morty software and systemd unit:
|
|
|
|
|
2020-06-18 16:52:45 +00:00
|
|
|
.. kernel-include:: $DOCS_BUILD/includes/morty.rst
|
2020-04-03 18:26:20 +00:00
|
|
|
:start-after: START install morty
|
|
|
|
:end-before: END install morty
|
|
|
|
|
2020-06-18 16:52:45 +00:00
|
|
|
.. kernel-include:: $DOCS_BUILD/includes/morty.rst
|
2020-04-03 18:26:20 +00:00
|
|
|
:start-after: START install systemd unit
|
|
|
|
:end-before: END install systemd unit
|
2020-02-03 12:25:51 +00:00
|
|
|
|
2020-04-09 13:04:23 +00:00
|
|
|
.. _morty.sh overview:
|
|
|
|
|
2020-02-04 12:13:17 +00:00
|
|
|
Overview
|
|
|
|
========
|
|
|
|
|
|
|
|
The ``--help`` output of the script is largely self-explanatory
|
|
|
|
(:ref:`toolboxing common`):
|
2020-02-03 12:25:51 +00:00
|
|
|
|
|
|
|
.. program-output:: ../utils/morty.sh --help
|
|
|
|
|