Binary Install
One-Line Install
Section titled “One-Line Install”curl -sSL https://install.particledb.io | bashThis detects your platform (Linux x86_64, Linux aarch64, macOS) and installs the particledb binary to /usr/local/bin/.
Start the Server
Section titled “Start the Server”particledb startWith custom options:
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 groupsyncPlatform Support
Section titled “Platform Support”| Platform | Architecture | Status |
|---|---|---|
| Linux | x86_64 | Supported |
| Linux | aarch64 (Graviton, ARM) | Supported |
| macOS | Apple Silicon (M1/M2/M3/M4) | Supported |
| macOS | Intel | Supported |
| Windows | x86_64 | Via WSL2 |
Systemd Service
Section titled “Systemd Service”[Unit]Description=ParticleDBAfter=network.target
[Service]Type=simpleUser=particledbExecStart=/usr/local/bin/particledb start --data-dir /var/lib/particledbRestart=alwaysRestartSec=5
[Install]WantedBy=multi-user.targetSave to /etc/systemd/system/particledb.service, then:
sudo systemctl enable particledbsudo systemctl start particledb