Skip to content

VictoriaLogs v1.0.0.7

Latest

Choose a tag to compare

@github-actions github-actions released this 27 Nov 13:14
4c684ae

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.