Lucid ᵏᵛ
  • About Lucid ᵏᵛ
  • Getting Started
  • Changelog
  • Documentation
    • API Documentation
    • Production Deployment
  • Other Resources
    • Lucid KV Website
    • Github Repository
Powered by GitBook
On this page
  • Download and Install
  • Create a Systemd Service
  • Enable Startup and Run the Service

Was this helpful?

  1. Documentation

Production Deployment

Lucid node production deployement guide.

PreviousAPI Documentation

Last updated 5 years ago

Was this helpful?

Download and Install

You need to download and copy the lucid binary to the /usr/bin/ directory. See .

$ wget https://github.com/lucid-kv/lucid/releases/latest/download/lucid.zip
$ tar -xvf lucid.zip
$ mv lucid /usr/bin/
$ rm -rf lucid.zip

Create a Systemd Service

To create a systemd service you need to create the following file.

$ nano /etc/systemd/system/lucid.service
[Unit]
Description=Lucid KV Store

[Service]
ExecStart=/usr/bin/lucid
Restart=always
RestartSec=10
KillSignal=SIGINT
SyslogIdentifier=lucid
User=root

[Install]
WantedBy=multi-user.target

Enable Startup and Run the Service

$ systemctl enable lucid
$ systemctl start lucid
latest Github release