Skip to content

Releases: whamcloud/VictoriaLogs

VictoriaLogs v1.0.0.9

27 Nov 12:44
41b38a0

Choose a tag to compare

VictoriaLogs v1.0.0.9

whamCloud custom build of VictoriaLogs for Linux AMD64.

📦 What's Included

This release contains:

  • victoria-logs - Main VictoriaLogs server for log management and analytics
  • vlagent - Log collection agent for shipping logs to VictoriaLogs
  • vlogscli - Interactive command-line tool for querying VictoriaLogs

🚀 Installation Options

Option 1: RPM Packages (Recommended for EL8/EL9/RHEL)

Enterprise Linux 8 / RHEL 8 / Rocky Linux 8 / AlmaLinux 8

# Download and install victorialogs
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.9/victorialogs-1.0.0.9-1.el8.x86_64.rpm
sudo dnf install -y ./victorialogs-1.0.0.9-1.el8.x86_64.rpm

# Download and install vlagent (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.9/vlagent-1.0.0.9-1.el8.x86_64.rpm
sudo dnf install -y ./vlagent-1.0.0.9-1.el8.x86_64.rpm

# Download and install vlogscli (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.9/vlogscli-1.0.0.9-1.el8.x86_64.rpm
sudo dnf install -y ./vlogscli-1.0.0.9-1.el8.x86_64.rpm

# Start services
sudo systemctl enable --now victorialogs
sudo systemctl status victorialogs

Enterprise Linux 9 / RHEL 9 / Rocky Linux 9 / AlmaLinux 9

# Download and install victorialogs
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.9/victorialogs-1.0.0.9-1.el9.x86_64.rpm
sudo dnf install -y ./victorialogs-1.0.0.9-1.el9.x86_64.rpm

# Download and install vlagent (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.9/vlagent-1.0.0.9-1.el9.x86_64.rpm
sudo dnf install -y ./vlagent-1.0.0.9-1.el9.x86_64.rpm

# Download and install vlogscli (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.9/vlogscli-1.0.0.9-1.el9.x86_64.rpm
sudo dnf install -y ./vlogscli-1.0.0.9-1.el9.x86_64.rpm

# Start services
sudo systemctl enable --now victorialogs
sudo systemctl status victorialogs

Option 2: Tarball Installation (Any Linux Distribution)

VictoriaLogs Server

# Download the tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.9/victoria-logs-linux-amd64-v1.0.0.9.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.9/victoria-logs-linux-amd64-v1.0.0.9_checksums.txt
sha256sum -c victoria-logs-linux-amd64-v1.0.0.9_checksums.txt

# Extract and run
tar -xzf victoria-logs-linux-amd64-v1.0.0.9.tar.gz
./victoria-logs-prod -storageDataPath=/var/lib/victorialogs

vlagent (Log Collection Agent)

# Download the vlutils tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.9/vlutils-linux-amd64-v1.0.0.9.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.9/vlutils-linux-amd64-v1.0.0.9_checksums.txt
sha256sum -c vlutils-linux-amd64-v1.0.0.9_checksums.txt

# Extract
tar -xzf vlutils-linux-amd64-v1.0.0.9.tar.gz

# Run vlagent
./vlagent-prod -remoteWrite.url=http://localhost:9428/insert/jsonline

vlogscli (Query CLI)

# Download the vlutils tarball (if not already downloaded)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.9/vlutils-linux-amd64-v1.0.0.9.tar.gz

# Extract
tar -xzf vlutils-linux-amd64-v1.0.0.9.tar.gz

# Run vlogscli
./vlogscli-prod -datasource.url=http://localhost:9428

Documentation

Checksums

SHA256 checksums are provided for all tarballs to verify integrity.

VictoriaLogs v1.0.0.8

27 Nov 12:37
1f595a7

Choose a tag to compare

VictoriaLogs v1.0.0.8

whamCloud custom build of VictoriaLogs for Linux AMD64.

📦 What's Included

This release contains:

  • victoria-logs - Main VictoriaLogs server for log management and analytics
  • vlagent - Log collection agent for shipping logs to VictoriaLogs
  • vlogscli - Interactive command-line tool for querying VictoriaLogs

🚀 Installation Options

Option 1: RPM Packages (Recommended for EL8/EL9/RHEL)

Enterprise Linux 8 / RHEL 8 / Rocky Linux 8 / AlmaLinux 8

# Download and install victorialogs
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.8/victorialogs-1.0.0.8-1.el8.x86_64.rpm
sudo dnf install -y ./victorialogs-1.0.0.8-1.el8.x86_64.rpm

# Download and install vlagent (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.8/vlagent-1.0.0.8-1.el8.x86_64.rpm
sudo dnf install -y ./vlagent-1.0.0.8-1.el8.x86_64.rpm

# Download and install vlogscli (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.8/vlogscli-1.0.0.8-1.el8.x86_64.rpm
sudo dnf install -y ./vlogscli-1.0.0.8-1.el8.x86_64.rpm

# Start services
sudo systemctl enable --now victorialogs
sudo systemctl status victorialogs

Enterprise Linux 9 / RHEL 9 / Rocky Linux 9 / AlmaLinux 9

# Download and install victorialogs
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.8/victorialogs-1.0.0.8-1.el9.x86_64.rpm
sudo dnf install -y ./victorialogs-1.0.0.8-1.el9.x86_64.rpm

# Download and install vlagent (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.8/vlagent-1.0.0.8-1.el9.x86_64.rpm
sudo dnf install -y ./vlagent-1.0.0.8-1.el9.x86_64.rpm

# Download and install vlogscli (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.8/vlogscli-1.0.0.8-1.el9.x86_64.rpm
sudo dnf install -y ./vlogscli-1.0.0.8-1.el9.x86_64.rpm

# Start services
sudo systemctl enable --now victorialogs
sudo systemctl status victorialogs

Option 2: Tarball Installation (Any Linux Distribution)

VictoriaLogs Server

# Download the tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.8/victoria-logs-linux-amd64-v1.0.0.8.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.8/victoria-logs-linux-amd64-v1.0.0.8_checksums.txt
sha256sum -c victoria-logs-linux-amd64-v1.0.0.8_checksums.txt

# Extract and run
tar -xzf victoria-logs-linux-amd64-v1.0.0.8.tar.gz
./victoria-logs-prod -storageDataPath=/var/lib/victorialogs

vlagent (Log Collection Agent)

# Download the vlutils tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.8/vlutils-linux-amd64-v1.0.0.8.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.8/vlutils-linux-amd64-v1.0.0.8_checksums.txt
sha256sum -c vlutils-linux-amd64-v1.0.0.8_checksums.txt

# Extract
tar -xzf vlutils-linux-amd64-v1.0.0.8.tar.gz

# Run vlagent
./vlagent-prod -remoteWrite.url=http://localhost:9428/insert/jsonline

vlogscli (Query CLI)

# Download the vlutils tarball (if not already downloaded)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.8/vlutils-linux-amd64-v1.0.0.8.tar.gz

# Extract
tar -xzf vlutils-linux-amd64-v1.0.0.8.tar.gz

# Run vlogscli
./vlogscli-prod -datasource.url=http://localhost:9428

Documentation

Checksums

SHA256 checksums are provided for all tarballs to verify integrity.

VictoriaLogs v1.0.0.7

27 Nov 13:14
4c684ae

Choose a tag to compare

VictoriaLogs v1.0.0.7

whamCloud custom build of VictoriaLogs for Linux AMD64.

📦 What's Included

This release contains:

  • victoria-logs - Main VictoriaLogs server for log management and analytics
  • vlagent - Log collection agent for shipping logs to VictoriaLogs
  • vlogscli - Interactive command-line tool for querying VictoriaLogs

🚀 Installation Options

Option 1: RPM Packages (Recommended for EL8/RHEL8)

Enterprise Linux 8 / RHEL 8 / Rocky Linux 8 / AlmaLinux 8

# Download and install victorialogs
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.7/victorialogs-1.0.0.7-1.el8.x86_64.rpm
sudo dnf install -y ./victorialogs-1.0.0.7-1.el8.x86_64.rpm

# Download and install vlagent (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.7/vlagent-1.0.0.7-1.el8.x86_64.rpm
sudo dnf install -y ./vlagent-1.0.0.7-1.el8.x86_64.rpm

# Download and install vlogscli (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.7/vlogscli-1.0.0.7-1.el8.x86_64.rpm
sudo dnf install -y ./vlogscli-1.0.0.7-1.el8.x86_64.rpm

# Start services
sudo systemctl enable --now victorialogs
sudo systemctl status victorialogs

Option 2: Tarball Installation (Any Linux Distribution)

VictoriaLogs Server

# Download the tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.7/victoria-logs-linux-amd64-v1.0.0.7.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.7/victoria-logs-linux-amd64-v1.0.0.7_checksums.txt
sha256sum -c victoria-logs-linux-amd64-v1.0.0.7_checksums.txt

# Extract and run
tar -xzf victoria-logs-linux-amd64-v1.0.0.7.tar.gz
./victoria-logs-prod -storageDataPath=/var/lib/victorialogs

vlagent (Log Collection Agent)

# Download the vlutils tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.7/vlutils-linux-amd64-v1.0.0.7.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.7/vlutils-linux-amd64-v1.0.0.7_checksums.txt
sha256sum -c vlutils-linux-amd64-v1.0.0.7_checksums.txt

# Extract
tar -xzf vlutils-linux-amd64-v1.0.0.7.tar.gz

# Run vlagent
./vlagent-prod -remoteWrite.url=http://localhost:9428/insert/jsonline

vlogscli (Query CLI)

# Download the vlutils tarball (if not already downloaded)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0.7/vlutils-linux-amd64-v1.0.0.7.tar.gz

# Extract
tar -xzf vlutils-linux-amd64-v1.0.0.7.tar.gz

# Run vlogscli
./vlogscli-prod -datasource.url=http://localhost:9428

Documentation

Checksums

SHA256 checksums are provided for all tarballs to verify integrity.

VictoriaLogs v1.0.7

29 Oct 12:04
b1b100a

Choose a tag to compare

VictoriaLogs v1.0.7

whamCloud custom build of VictoriaLogs for Linux AMD64.

📦 What's Included

This release contains:

  • victoria-logs - Main VictoriaLogs server for log management and analytics
  • vlagent - Log collection agent for shipping logs to VictoriaLogs
  • vlogscli - Interactive command-line tool for querying VictoriaLogs

🚀 Installation Options

Option 1: RPM Packages (Recommended for EL8/EL9/RHEL)

Enterprise Linux 8 / RHEL 8 / Rocky Linux 8 / AlmaLinux 8

# Download and install victorialogs
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.7/victorialogs-1.0.7-1.el8.x86_64.rpm
sudo dnf install -y ./victorialogs-1.0.7-1.el8.x86_64.rpm

# Download and install vlagent (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.7/vlagent-1.0.7-1.el8.x86_64.rpm
sudo dnf install -y ./vlagent-1.0.7-1.el8.x86_64.rpm

# Download and install vlogscli (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.7/vlogscli-1.0.7-1.el8.x86_64.rpm
sudo dnf install -y ./vlogscli-1.0.7-1.el8.x86_64.rpm

# Start services
sudo systemctl enable --now victorialogs
sudo systemctl status victorialogs

Enterprise Linux 9 / RHEL 9 / Rocky Linux 9 / AlmaLinux 9

# Download and install victorialogs
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.7/victorialogs-1.0.7-1.el9.x86_64.rpm
sudo dnf install -y ./victorialogs-1.0.7-1.el9.x86_64.rpm

# Download and install vlagent (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.7/vlagent-1.0.7-1.el9.x86_64.rpm
sudo dnf install -y ./vlagent-1.0.7-1.el9.x86_64.rpm

# Download and install vlogscli (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.7/vlogscli-1.0.7-1.el9.x86_64.rpm
sudo dnf install -y ./vlogscli-1.0.7-1.el9.x86_64.rpm

# Start services
sudo systemctl enable --now victorialogs
sudo systemctl status victorialogs

Option 2: Tarball Installation (Any Linux Distribution)

VictoriaLogs Server

# Download the tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.7/victoria-logs-linux-amd64-v1.0.7.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.7/victoria-logs-linux-amd64-v1.0.7_checksums.txt
sha256sum -c victoria-logs-linux-amd64-v1.0.7_checksums.txt

# Extract and run
tar -xzf victoria-logs-linux-amd64-v1.0.7.tar.gz
./victoria-logs-prod -storageDataPath=/var/lib/victorialogs

vlagent (Log Collection Agent)

# Download the vlutils tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.7/vlutils-linux-amd64-v1.0.7.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.7/vlutils-linux-amd64-v1.0.7_checksums.txt
sha256sum -c vlutils-linux-amd64-v1.0.7_checksums.txt

# Extract
tar -xzf vlutils-linux-amd64-v1.0.7.tar.gz

# Run vlagent
./vlagent-prod -remoteWrite.url=http://localhost:9428/insert/jsonline

vlogscli (Query CLI)

# Download the vlutils tarball (if not already downloaded)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.7/vlutils-linux-amd64-v1.0.7.tar.gz

# Extract
tar -xzf vlutils-linux-amd64-v1.0.7.tar.gz

# Run vlogscli
./vlogscli-prod -datasource.url=http://localhost:9428

Documentation

Checksums

SHA256 checksums are provided for all tarballs to verify integrity.

VictoriaLogs v1.0.6

29 Oct 11:56
b1b100a

Choose a tag to compare

VictoriaLogs v1.0.6

whamCloud custom build of VictoriaLogs for Linux AMD64.

📦 What's Included

This release contains:

  • victoria-logs - Main VictoriaLogs server for log management and analytics
  • vlagent - Log collection agent for shipping logs to VictoriaLogs
  • vlogscli - Interactive command-line tool for querying VictoriaLogs

🚀 Installation Options

Option 1: RPM Packages (Recommended for EL8/EL9/RHEL)

Enterprise Linux 8 / RHEL 8 / Rocky Linux 8 / AlmaLinux 8

# Download and install victorialogs
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.6/victorialogs-1.0.6-1.el8.x86_64.rpm
sudo dnf install -y ./victorialogs-1.0.6-1.el8.x86_64.rpm

# Download and install vlagent (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.6/vlagent-1.0.6-1.el8.x86_64.rpm
sudo dnf install -y ./vlagent-1.0.6-1.el8.x86_64.rpm

# Download and install vlogscli (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.6/vlogscli-1.0.6-1.el8.x86_64.rpm
sudo dnf install -y ./vlogscli-1.0.6-1.el8.x86_64.rpm

# Start services
sudo systemctl enable --now victorialogs
sudo systemctl status victorialogs

Enterprise Linux 9 / RHEL 9 / Rocky Linux 9 / AlmaLinux 9

# Download and install victorialogs
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.6/victorialogs-1.0.6-1.el9.x86_64.rpm
sudo dnf install -y ./victorialogs-1.0.6-1.el9.x86_64.rpm

# Download and install vlagent (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.6/vlagent-1.0.6-1.el9.x86_64.rpm
sudo dnf install -y ./vlagent-1.0.6-1.el9.x86_64.rpm

# Download and install vlogscli (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.6/vlogscli-1.0.6-1.el9.x86_64.rpm
sudo dnf install -y ./vlogscli-1.0.6-1.el9.x86_64.rpm

# Start services
sudo systemctl enable --now victorialogs
sudo systemctl status victorialogs

Option 2: Tarball Installation (Any Linux Distribution)

VictoriaLogs Server

# Download the tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.6/victoria-logs-linux-amd64-v1.0.6.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.6/victoria-logs-linux-amd64-v1.0.6_checksums.txt
sha256sum -c victoria-logs-linux-amd64-v1.0.6_checksums.txt

# Extract and run
tar -xzf victoria-logs-linux-amd64-v1.0.6.tar.gz
./victoria-logs-prod -storageDataPath=/var/lib/victorialogs

vlagent (Log Collection Agent)

# Download the vlutils tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.6/vlutils-linux-amd64-v1.0.6.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.6/vlutils-linux-amd64-v1.0.6_checksums.txt
sha256sum -c vlutils-linux-amd64-v1.0.6_checksums.txt

# Extract
tar -xzf vlutils-linux-amd64-v1.0.6.tar.gz

# Run vlagent
./vlagent-prod -remoteWrite.url=http://localhost:9428/insert/jsonline

vlogscli (Query CLI)

# Download the vlutils tarball (if not already downloaded)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.6/vlutils-linux-amd64-v1.0.6.tar.gz

# Extract
tar -xzf vlutils-linux-amd64-v1.0.6.tar.gz

# Run vlogscli
./vlogscli-prod -datasource.url=http://localhost:9428

Documentation

Checksums

SHA256 checksums are provided for all tarballs to verify integrity.

VictoriaLogs v1.0.5

29 Oct 11:44
b1b100a

Choose a tag to compare

VictoriaLogs v1.0.5

whamCloud custom build of VictoriaLogs for Linux AMD64.

📦 What's Included

This release contains:

  • victoria-logs - Main VictoriaLogs server for log management and analytics
  • vlagent - Log collection agent for shipping logs to VictoriaLogs
  • vlogscli - Interactive command-line tool for querying VictoriaLogs

🚀 Installation Options

Option 1: RPM Packages (Recommended for EL8/EL9/RHEL)

Enterprise Linux 8 / RHEL 8 / Rocky Linux 8 / AlmaLinux 8

# Download and install victorialogs
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.5/victorialogs-1.0.5-1.el8.x86_64.rpm
sudo dnf install -y ./victorialogs-1.0.5-1.el8.x86_64.rpm

# Download and install vlagent (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.5/vlagent-1.0.5-1.el8.x86_64.rpm
sudo dnf install -y ./vlagent-1.0.5-1.el8.x86_64.rpm

# Download and install vlogscli (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.5/vlogscli-1.0.5-1.el8.x86_64.rpm
sudo dnf install -y ./vlogscli-1.0.5-1.el8.x86_64.rpm

# Start services
sudo systemctl enable --now victorialogs
sudo systemctl status victorialogs

Enterprise Linux 9 / RHEL 9 / Rocky Linux 9 / AlmaLinux 9

# Download and install victorialogs
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.5/victorialogs-1.0.5-1.el9.x86_64.rpm
sudo dnf install -y ./victorialogs-1.0.5-1.el9.x86_64.rpm

# Download and install vlagent (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.5/vlagent-1.0.5-1.el9.x86_64.rpm
sudo dnf install -y ./vlagent-1.0.5-1.el9.x86_64.rpm

# Download and install vlogscli (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.5/vlogscli-1.0.5-1.el9.x86_64.rpm
sudo dnf install -y ./vlogscli-1.0.5-1.el9.x86_64.rpm

# Start services
sudo systemctl enable --now victorialogs
sudo systemctl status victorialogs

Option 2: Tarball Installation (Any Linux Distribution)

VictoriaLogs Server

# Download the tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.5/victoria-logs-linux-amd64-v1.0.5.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.5/victoria-logs-linux-amd64-v1.0.5_checksums.txt
sha256sum -c victoria-logs-linux-amd64-v1.0.5_checksums.txt

# Extract and run
tar -xzf victoria-logs-linux-amd64-v1.0.5.tar.gz
./victoria-logs-prod -storageDataPath=/var/lib/victorialogs

vlagent (Log Collection Agent)

# Download the vlutils tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.5/vlutils-linux-amd64-v1.0.5.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.5/vlutils-linux-amd64-v1.0.5_checksums.txt
sha256sum -c vlutils-linux-amd64-v1.0.5_checksums.txt

# Extract
tar -xzf vlutils-linux-amd64-v1.0.5.tar.gz

# Run vlagent
./vlagent-prod -remoteWrite.url=http://localhost:9428/insert/jsonline

vlogscli (Query CLI)

# Download the vlutils tarball (if not already downloaded)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.5/vlutils-linux-amd64-v1.0.5.tar.gz

# Extract
tar -xzf vlutils-linux-amd64-v1.0.5.tar.gz

# Run vlogscli
./vlogscli-prod -datasource.url=http://localhost:9428

Documentation

Checksums

SHA256 checksums are provided for all tarballs to verify integrity.

VictoriaLogs v1.0.3

29 Oct 11:34
b1b100a

Choose a tag to compare

VictoriaLogs v1.0.3

whamCloud custom build of VictoriaLogs for Linux AMD64.

📦 What's Included

This release contains:

  • victoria-logs - Main VictoriaLogs server for log management and analytics
  • vlagent - Log collection agent for shipping logs to VictoriaLogs
  • vlogscli - Interactive command-line tool for querying VictoriaLogs

🚀 Installation Options

Option 1: RPM Packages (Recommended for EL8/EL9/RHEL)

Enterprise Linux 8 / RHEL 8 / Rocky Linux 8 / AlmaLinux 8

# Download and install victorialogs
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.3/victorialogs-1.0.3-1.el8.x86_64.rpm
sudo dnf install -y ./victorialogs-1.0.3-1.el8.x86_64.rpm

# Download and install vlagent (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.3/vlagent-1.0.3-1.el8.x86_64.rpm
sudo dnf install -y ./vlagent-1.0.3-1.el8.x86_64.rpm

# Download and install vlogscli (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.3/vlogscli-1.0.3-1.el8.x86_64.rpm
sudo dnf install -y ./vlogscli-1.0.3-1.el8.x86_64.rpm

# Start services
sudo systemctl enable --now victorialogs
sudo systemctl status victorialogs

Enterprise Linux 9 / RHEL 9 / Rocky Linux 9 / AlmaLinux 9

# Download and install victorialogs
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.3/victorialogs-1.0.3-1.el9.x86_64.rpm
sudo dnf install -y ./victorialogs-1.0.3-1.el9.x86_64.rpm

# Download and install vlagent (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.3/vlagent-1.0.3-1.el9.x86_64.rpm
sudo dnf install -y ./vlagent-1.0.3-1.el9.x86_64.rpm

# Download and install vlogscli (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.3/vlogscli-1.0.3-1.el9.x86_64.rpm
sudo dnf install -y ./vlogscli-1.0.3-1.el9.x86_64.rpm

# Start services
sudo systemctl enable --now victorialogs
sudo systemctl status victorialogs

Option 2: Tarball Installation (Any Linux Distribution)

VictoriaLogs Server

# Download the tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.3/victoria-logs-linux-amd64-v1.0.3.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.3/victoria-logs-linux-amd64-v1.0.3_checksums.txt
sha256sum -c victoria-logs-linux-amd64-v1.0.3_checksums.txt

# Extract and run
tar -xzf victoria-logs-linux-amd64-v1.0.3.tar.gz
./victoria-logs-prod -storageDataPath=/var/lib/victorialogs

vlagent (Log Collection Agent)

# Download the vlutils tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.3/vlutils-linux-amd64-v1.0.3.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.3/vlutils-linux-amd64-v1.0.3_checksums.txt
sha256sum -c vlutils-linux-amd64-v1.0.3_checksums.txt

# Extract
tar -xzf vlutils-linux-amd64-v1.0.3.tar.gz

# Run vlagent
./vlagent-prod -remoteWrite.url=http://localhost:9428/insert/jsonline

vlogscli (Query CLI)

# Download the vlutils tarball (if not already downloaded)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.3/vlutils-linux-amd64-v1.0.3.tar.gz

# Extract
tar -xzf vlutils-linux-amd64-v1.0.3.tar.gz

# Run vlogscli
./vlogscli-prod -datasource.url=http://localhost:9428

Documentation

Checksums

SHA256 checksums are provided for all tarballs to verify integrity.

VictoriaLogs v1.0.1

29 Oct 10:21
f18c69d

Choose a tag to compare

VictoriaLogs v1.0.1

whamCloud custom build of VictoriaLogs for Linux AMD64.

Compatibility

These are statically-linked Go binaries that work on:

  • Enterprise Linux 8/9 (CentOS Stream, Rocky Linux, AlmaLinux)
  • Red Hat Enterprise Linux 8/9
  • Any modern Linux distribution with AMD64 architecture

What's Included

This release contains:

  • victoria-logs - Main VictoriaLogs server for log management and analytics
  • vlagent - Log collection agent for shipping logs to VictoriaLogs
  • vlogscli - Interactive command-line tool for querying VictoriaLogs

Installation

VictoriaLogs Server

# Download the tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.1/victoria-logs-linux-amd64-v1.0.1.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.1/victoria-logs-linux-amd64-v1.0.1_checksums.txt
sha256sum -c victoria-logs-linux-amd64-v1.0.1_checksums.txt

# Extract and run
tar -xzf victoria-logs-linux-amd64-v1.0.1.tar.gz
./victoria-logs-prod -storageDataPath=/var/lib/victorialogs

vlagent (Log Collection Agent)

# Download the vlutils tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.1/vlutils-linux-amd64-v1.0.1.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.1/vlutils-linux-amd64-v1.0.1_checksums.txt
sha256sum -c vlutils-linux-amd64-v1.0.1_checksums.txt

# Extract
tar -xzf vlutils-linux-amd64-v1.0.1.tar.gz

# Run vlagent
./vlagent-prod -remoteWrite.url=http://localhost:9428/insert/jsonline

vlogscli (Query CLI)

# Download the vlutils tarball (if not already downloaded)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.1/vlutils-linux-amd64-v1.0.1.tar.gz

# Extract
tar -xzf vlutils-linux-amd64-v1.0.1.tar.gz

# Run vlogscli
./vlogscli-prod -datasource.url=http://localhost:9428

Documentation

Checksums

SHA256 checksums are provided for all tarballs to verify integrity.

VictoriaLogs v1.0.0

29 Oct 08:29
309c4c8

Choose a tag to compare

VictoriaLogs v1.0.0

whamCloud custom build of VictoriaLogs for Linux AMD64.

Compatibility

This is a statically-linked Go binary that works on:

  • Enterprise Linux 8/9 (CentOS Stream, Rocky Linux, AlmaLinux)
  • Red Hat Enterprise Linux 8/9
  • Any modern Linux distribution with AMD64 architecture

Installation

# Download the tarball
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0/victoria-logs-linux-amd64-v1.0.0.tar.gz

# Verify checksum (optional)
wget https://github.com/whamCloud/VictoriaLogs/releases/download/v1.0.0/victoria-logs-linux-amd64-v1.0.0_checksums.txt
sha256sum -c victoria-logs-linux-amd64-v1.0.0_checksums.txt

# Extract and run
tar -xzf victoria-logs-linux-amd64-v1.0.0.tar.gz
./victoria-logs

Checksums

SHA256 checksums are provided to verify integrity.