Skip to content

VictoriaLogs v1.0.3

Choose a tag to compare

@github-actions github-actions released this 29 Oct 11:34
b1b100a

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.