Arangodb installation and how to?

i tried installing arangodb but i do not see how i can start or use it on nixos. is there a pointer to the instruction?

caught exception during prepare of feature ‘Logger’: cannot write file

thanks for yor help.

Hi, @wpoosanguansit.

It looks like there is no NixOS module for arangodb at this time. PRs are welcome!

To get started, you’ll probably want to configure a systemd service with the systemd.services.<name> options. NixOS Search

You could start by trying to modify a different module. Maybe the MongoDB one would work? https://github.com/NixOS/nixpkgs/blob/b43c4d8b758a3965067b24f3796cdd532756a2ce/nixos/modules/services/databases/mongodb.nix

- Ryan

There is also this PR that hasn’t been merged arangodb: Add arangodb as a NixOS service by babariviere · Pull Request #40167 · NixOS/nixpkgs · GitHub that might be a good starting point.

- Ryan

On a dev machine I am using:

{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.services.arangodb;

  writeConfFile = filename: attrs: pkgs.writeText filename (
    concatStringsSep "\n" (mapAttrsToList (section: attrs2: ''
      [${section}]
      ${concatStringsSep "\n" (mapAttrsToList (k: v: "${k} = ${if builtins.isBool v then boolToString v else toString v}") attrs2)}
    '') attrs
  ));
in

{

  ###### interface

  options = {
    services.arangodb = {
      enable = mkEnableOption "ArangoDB server";

      package = mkOption {
        default = pkgs.arangodb;
        type = types.package;
        description = "Which ArangoDB derivation to use";
      };

      dataDir = mkOption {
        type = types.path;
        example = "/var/db/arangodb";
        default = "/var/db/arangodb";
        description = "ArangoDB data dir";
      };

      arangodConf = mkOption {
        type = types.attrs;
        default = {
          server.endpoint               = "tcp://127.0.0.1:8529";
          server.storage-engine         = "auto";
          server.uid                    = "arangodb";
          database.directory            = cfg.dataDir;
          javascript.startup-directory  = "${cfg.package}/share/arangodb3/js";
          javascript.app-path           = cfg.dataDir;
          log.level                     = "info";
          log.file                      = "${cfg.dataDir}/arangodb.log";
        };
      };

      arangoshConf = mkOption {
        type = types.attrs;
        default = {
          console.pretty-print          = true;
          javascript.startup-directory  = "${cfg.package}/share/arangodb3/js";
          server.endpoint               = cfg.arangodConf.server.endpoint;
          server.password               = "";
        };
      };
    };
  };

  ###### implementation

  config = mkIf cfg.enable {

    users.extraUsers.arangodb = {
      name = "arangodb";
      group = "arangodb";
      uid = /*config.ids.uids.arangodb*/600;
      description = "ArangoDB server user";
    };
    users.extraGroups.arangodb.gid = /*config.ids.gids.arangodb*/600;

    boot.kernel.sysctl."vm.max_map_count" = lib.mkDefault 256000;

    environment.systemPackages = [
      (pkgs.stdenv.mkDerivation {
        name = "arangodb-cli-wrappers";
        nativeBuildInputs = [ pkgs.makeWrapper ];
        buildCommand = ''
          mkdir -p $out/bin
          makeWrapper ${cfg.package}/bin/arangosh $out/bin/arangosh \
            --argv0 ${cfg.package}/bin/arangosh \
            --add-flags "--configuration ${writeConfFile "arangosh.conf" cfg.arangoshConf}"
        '';
      })
    ];

    systemd.services.arangodb = rec {
      description = "ArangoDB server";

      wantedBy = [ "multi-user.target" ];
      after = [ "network.target" ];

      serviceConfig = {
        ExecStart = "${cfg.package}/bin/arangod --configuration ${writeConfFile "arangod.conf" cfg.arangodConf}";
        User = "arangodb";
        Group = "arangodb";
        LimitNOFILE = 100000;
        PermissionsStartOnly = true;
      };

      preStart = ''
        install -d -m0700 -o ${escapeShellArg serviceConfig.User} -g ${escapeShellArg serviceConfig.Group} ${escapeShellArg cfg.dataDir}

        # just in case of uid/gid change
        chown -R ${escapeShellArg "${serviceConfig.User}:${serviceConfig.Group}"} ${escapeShellArg cfg.dataDir}
      '';
    };

  };

}

I will submit a PR after some battle-testing

1 Like