regional-system-on.rst (2013B)
1 .. 2 This file is part of GNU TALER. 3 Copyright (C) 2014-2024 Taler Systems SA 4 5 TALER is free software; you can redistribute it and/or modify it under the 6 terms of the GNU Affero General Public License as published by the Free Software 7 Foundation; either version 2.1, or (at your option) any later version. 8 9 TALER is distributed in the hope that it will be useful, but WITHOUT ANY 10 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 11 A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. 12 13 You should have received a copy of the GNU Affero General Public License along with 14 TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> 15 16 17 System ON! 18 ========== 19 20 The last step is to enable libeufin-nexus to :ref:`import incoming bank 21 transactions <receive-transaction-data>` (cash in) and to :ref:`trigger 22 outgoing bank transactions <sending-payments>` (cash out). 23 24 First, check that libeufin-nexus is correctly configured by running the following commands: 25 26 .. code-block:: console 27 28 # sudo -u libeufin-nexus libeufin-nexus ebics-setup 29 # sudo -u libeufin-nexus libeufin-nexus ebics-fetch --transient 30 # sudo -u libeufin-nexus libeufin-nexus ebics-submit --transient 31 32 If you have old transactions after the date YYYY-MM-DD that you wish to import into the database, run the following command: 33 34 .. code-block:: console 35 36 # sudo -u libeufin-nexus libeufin-nexus ebics-fetch --transientt --pinned-start YYYY-MM-DD 37 38 None of those commands should fail. If they all work, you can enable the services: 39 40 .. code-block:: console 41 42 # systemctl enable --now libeufin-nexus.target 43 44 Now that we know that libeufin-nexus is working correctly, we still need to check that communication with your bank is working properly. We will test this later, at :ref:`the end of the manual <regional-use>`. The system should only be considered functional after a successful :ref:`cash in <regional-use-cashin>` and :ref:`cash out <regional-use-cashout>`.