grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / databases / tigerbeetle.md
blob7cf3bedda5e0a0d2078331de4e14d876f845bfe6
1 # TigerBeetle {#module-services-tigerbeetle}
3 *Source:* {file}`modules/services/databases/tigerbeetle.nix`
5 *Upstream documentation:* <https://docs.tigerbeetle.com/>
7 TigerBeetle is a distributed financial accounting database designed for mission critical safety and performance.
9 To enable TigerBeetle, add the following to your {file}`configuration.nix`:
10 ```nix
12   services.tigerbeetle.enable = true;
14 ```
16 When first started, the TigerBeetle service will create its data file at {file}`/var/lib/tigerbeetle` unless the file already exists, in which case it will just use the existing file.
17 If you make changes to the configuration of TigerBeetle after its data file was already created (for example increasing the replica count), you may need to remove the existing file to avoid conflicts.
19 ## Configuring {#module-services-tigerbeetle-configuring}
21 By default, TigerBeetle will only listen on a local interface.
22 To configure it to listen on a different interface (and to configure it to connect to other replicas, if you're creating more than one), you'll have to set the `addresses` option.
23 Note that the TigerBeetle module won't open any firewall ports automatically, so if you configure it to listen on an external interface, you'll need to ensure that connections can reach it:
25 ```nix
27   services.tigerbeetle = {
28     enable = true;
29     addresses = [ "0.0.0.0:3001" ];
30   };
32   networking.firewall.allowedTCPPorts = [ 3001 ];
34 ```
36 A complete list of options for TigerBeetle can be found [here](#opt-services.tigerbeetle.enable).
38 ## Upgrading {#module-services-tigerbeetle-upgrading}
40 Usually, TigerBeetle's [upgrade process](https://docs.tigerbeetle.com/operating/upgrading) only requires replacing the binary used for the servers.
41 This is not directly possible with NixOS since the new binary will be located at a different place in the Nix store.
43 However, since TigerBeetle is managed through systemd on NixOS, the only action you need to take when upgrading is to make sure the version of TigerBeetle you're upgrading to supports upgrades from the version you're currently running.
44 This information will be on the [release notes](https://github.com/tigerbeetle/tigerbeetle/releases) for the version you're upgrading to.