• English日本語한국어
  • Log inStart now

Tarball assisted install of the infrastructure agent for Linux

With the assisted install of the infrastructure agent for Linux, you can make the changes you need to the installation script and configuration file we provide so you can adapt it to your environment.

Important

Assisted install only works for the Systemd, Upstart, and SysV service managers. If you use any other service manager, proceed with the manual install.

Before installation, check the compatibility and requirements.

Install the agent

To install the agent:

  1. Download the packaged agent file or use the following command that automatically fetches a specific version of the agent, its checksum and verifies it after download. Replace ARCH=amd64 with desired architecture (amd64, 386, arm64, arm) and V=1.27.4 with latest or specific version.

    bash
    $
    V=1.27.4 ARCH=amd64; echo "https://download.newrelic.com/infrastructure_agent/binaries/linux/${ARCH}/newrelic-infra_linux_${V}_${ARCH}.tar.gz" | { read url; wget "${url}"{,.sum}; shasum -a 256 --check ${url##*/}.sum; }

    From version 1.27.4 on, we provide the tar.gz package GPG signature. You can check the signature procedure and instructions for verification in the infra-agent repository on GitHub.

  2. Unpack the file.

  3. Make sure the file unpacks with the following structure:

    newrelic-infra
    |-- config_defaults.sh
    |-- etc
    | |-- init_scripts
    | | |-- systemd
    | | | `-- newrelic-infra.service
    | | |-- sysv
    | | | `-- newrelic-infra
    | | `-- upstart
    | | `-- newrelic-infra
    | `-- newrelic-infra
    | `-- integrations.d
    |-- installer.sh
    |-- usr
    | `-- bin
    | |-- newrelic-infra
    | |-- newrelic-infra-ctl
    | `-- newrelic-infra-service
    `-- var
    |-- db
    | `-- newrelic-infra
    | |-- custom-integrations
    | |-- integrations.d
    | |-- LICENSE.txt
    | `-- newrelic-integrations
    |-- log
    | `-- newrelic-infra
    `-- run
    `-- newrelic-infra
  4. Update your license key in config_defaults.sh.

  5. Optional: Update any other environment parameters in the configuration file.

  6. Execute installer.sh with admin rights.

The script automatically identifies your service manager. If it fails, it will prompt you to manually update it.

Did this doc help with your installation?

Configure your installation

The configuration file config_defaults.sh serves as a source of reference for all the configuration options. It contains the following environment parameters:

Variable

Description

NRIA_AGENT_DIR

Required at agent startup.

The agent home directory.

Default:

/var/db/newrelic-infra/

NRIA_BIN_DIR

Required at installation.

The path to the agent binary folder.

Default:

/usr/local/bin

NRIA_CONFIG_FILE

Required at installation.

The agent configuration file's location.

Default:

/etc/newrelic-infra.yml

NRIA_LICENSE_KEY

Only configuration option required at startup.

The infrastructure agent license key.

NRIA_LOG_FILE

Required at agent startup.

The location where the agent will log.

Default:

/var/run/newrelic-infra/newrelic-infra.log

NRIA_MODE

Required at installation.

The privilege level for the agent. Possible values are ROOT, PRIVILEGED or UNPRIVILEGED. For more info see our documentation on agent running modes.

Default:

ROOT

NRIA_PID_FILE

Required at agent startup.

The location where the agent will place its PID file.

Default:

/var/run/newrelic-infra/newrelic-infra.pid

NRIA_PLUGIN_DIR

Required at agent startup.

The directory containing the configuration files of the integrations.

Default:

/etc/newrelic-infra/integrations.d/

NRIA_USER

Required at installation time only when the running mode is set to either PRIVILEGED or UNPRIVILEGED.

The user that will run the agent binary.

What's next?

You may also want to:

Copyright © 2024 New Relic Inc.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.