Official package repository
VelaMQ Install Guide
Use this repository to install VelaMQ on Linux and macOS, configure system services, update packages, and download release artifacts directly.
Debian / Ubuntu
The installer detects amd64 and arm64,
configures the apt source, and then you can install VelaMQ with the
regular package manager.
One-time repository setup
curl -fsSL https://repo.velamq.com/install.sh | sudo bash
Install and start
sudo apt install velamq
sudo systemctl enable --now velamq
Upgrade
sudo apt update
sudo apt install velamq
sudo systemctl restart velamq
Uninstall
sudo systemctl stop velamq
sudo apt remove velamq
RHEL / Rocky / Alma / CentOS / Fedora
The yum repository publishes x86_64 and aarch64 RPM packages with systemd units. Use dnf on newer distributions, or yum on older CentOS/RHEL systems.
One-time repository setup
sudo curl -fsSL -o /etc/yum.repos.d/velamq.repo \
https://repo.velamq.com/yum/velamq.repo
Install and start
sudo dnf install velamq
sudo systemctl enable --now velamq
Upgrade
sudo dnf upgrade velamq
sudo systemctl restart velamq
Uninstall
sudo systemctl stop velamq
sudo dnf remove velamq
macOS Homebrew
Homebrew installs the tap from GitHub and downloads the macOS package from this repository. Apple Silicon and Intel macOS are selected automatically by Homebrew.
Install
brew tap hwkj-tech/velamq
brew install velamq
Start service
brew services start velamq
Upgrade
brew update
brew upgrade velamq
brew services restart velamq
Uninstall
brew services stop velamq
brew uninstall velamq
Service management and paths
Check status
sudo systemctl status velamq
View logs
sudo journalctl -u velamq -f
Restart after config changes
sudo systemctl restart velamq
Direct downloads
GitHub Pages serves release artifacts directly. Use package managers for production upgrades, or download artifacts manually from:
https://repo.velamq.com/downloads/
- macOS: zip packages for Apple Silicon and Intel.
- Linux: zip packages and deb packages for x86_64/amd64 and aarch64/arm64.
- Repository base:
https://repo.velamq.com.