Skip to content

Binary Install

Terminal window
curl -sSL https://install.particledb.io | bash

This detects your platform (Linux x86_64, Linux aarch64, macOS) and installs the particledb binary to /usr/local/bin/.

Terminal window
particledb start

With custom options:

Terminal window
particledb start \
--data-dir /var/lib/particledb \
--pg-addr 0.0.0.0:5432 \
--pg-unix-socket /tmp/.s.PGSQL.5432 \
--http-addr 0.0.0.0:8080 \
--wal-sync-mode groupsync
PlatformArchitectureStatus
Linuxx86_64Supported
Linuxaarch64 (Graviton, ARM)Supported
macOSApple Silicon (M1/M2/M3/M4)Supported
macOSIntelSupported
Windowsx86_64Via WSL2
[Unit]
Description=ParticleDB
After=network.target
[Service]
Type=simple
User=particledb
ExecStart=/usr/local/bin/particledb start --data-dir /var/lib/particledb
Restart=always
RestartSec=5
[Install]
WantedBy=multi-user.target

Save to /etc/systemd/system/particledb.service, then:

Terminal window
sudo systemctl enable particledb
sudo systemctl start particledb