Production Deployment
Lucid node production deployement guide.
Download and Install
You need to download and copy the lucid binary to the /usr/bin/ directory. See latest Github release.
$ wget https://github.com/lucid-kv/lucid/releases/latest/download/lucid.zip
$ tar -xvf lucid.zip
$ mv lucid /usr/bin/
$ rm -rf lucid.zipCreate 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.targetEnable Startup and Run the Service
$ systemctl enable lucid
$ systemctl start lucidLast updated
Was this helpful?