netdata / msi-installer

Netdata installer for Windows using WSL2
GNU General Public License v3.0
21 stars 2 forks source link

Netdata MSI Installer

Netdata installer for Windows using WSL. Use this installer to quickly explore how Netdata monitors Windows hosts.

For production use, you will need to install Netdata on a Linux host.

Instructions

On your Windows machine:

:warning: Running directly the MSI will cause installation to fail. Only install via msiexec.

:warning: You will need to reboot your server in order to finish the installation and a user needs to log in, after the reboot, due to https://github.com/microsoft/WSL/issues/2979.

Installation Details

The MSI installer includes and installs automatically the following dependencies:

If WSL2 can't be used, WSL1 will be used instead.

The MSI file is self-contained. Run it to setup the Netdata agent.

The installer will register the WSL distribution called "Netdata", start the agent and add a startup item for the current user.

The agent can be added to Netdata Cloud by running the following as an administrator:

msiexec.exe /i C:\PATH-TO-MSI\netdata.msi TOKEN=[Claim token] ROOMS=[Room IDs] URL=https://app.netdata.cloud

You take the values of [token] and [rooms] from Netdata Cloud. e.g.

image

To disable telemetry add the binary argument TELEMETRY=0:

msiexec.exe /i C:\PATH-TO-MSI\netdata.msi TELEMETRY=0

The installation log can be found at C:\NETDATA.LOG

To enable an automatic restart, use binary argument AUTORESTART=1:

msiexec.exe /i C:\PATH-TO-MSI\netdata.msi AUTORESTART=1

To specify the WSL version to be used use integer argument WSL=1:

msiexec.exe /i C:\PATH-TO-MSI\netdata.msi WSL=1

Netdata configuration

For a single instance, you can bring up the linux prompt via wsl -d Netdata, then cd /etc/netdata and use ./edit-config. For an infrastructure-wide deployment use your preferred deployment tool and do the following:

  1. Put all your custom netdata configs under a directory in the target machine (e.g. under c:Users/Public/custom-netdata-config-file-directory)

  2. Copy the config files

    wsl -d Netdata cp -a /mnt/c/Users/Public/custom-netdata-config-file-directory/ /etc/netdata
  3. Restart netdata

    restart-netdata

Start/Stop Netdata

  1. Start netdata

    start-netdata
  2. Stop netdata

    stop-netdata
  3. Restart netdata

    restart-netdata

Uninstall

Uninstallation from the Control Panel (Add or remove programs) removes the WSL distro, including the netdata configuration files. The name of the program is "NetdataWSL".

Build

The WXS file will build the MSI file through the WiX toolset.

docker_image_to_wsl_tar will generate the netdata.tar file containing the WSL distro using the public Netdata/netdata Docker image and used by WiX.