An efficient re-implementation of Electrum Server,
inspired by ElectrumX, Electrum Personal Server and bitcoincore-indexd.
An init script has been provided to run
electrs as a daemon. To configure electrs, edit:
/etc/electrs/config.toml
!! Before you run the server, specify the daemon directory !!
!! And setup permissions !!
Remember to chmod +x /etc/rc.d/rc.electrs before starting.
In order to use the default configuration you should create a
'electrs' user and group with the following commands:
groupadd -g 386 electrs
useradd -u 386 -g 386 -c "electrs - Electrum Server" \
-M -d /var/run/electrs -s /bin/false electrs
To start electrs automatically at system start, add the following
to /etc/rc.d/rc.local:
if [ -x /etc/rc.d/rc.electrs ]; then
/etc/rc.d/rc.electrs start
fi
To properly stop electrs on system shutdown, add the following
to: /etc/rc.d/rc.local_shutdown:
if [ -x /etc/rc.d/rc.electrs ]; then
/etc/rc.d/rc.electrs stop
fi
This requires: rust-opt
Maintained by: thnkman
Keywords: blockchain,tor,electrum
ChangeLog: electrs
Homepage:
https://github.com/romanz/electrs
Download SlackBuild:
electrs.tar.gz
electrs.tar.gz.asc (FAQ)
(the SlackBuild does not include the source)
Individual Files: |
README |
config.toml |
doinst.sh |
electrs.SlackBuild |
electrs.info |
rc.electrs |
slack-desc |
© 2006-2025 SlackBuilds.org Project. All rights reserved.
Slackware® is a registered trademark of
Patrick Volkerding
Linux® is a registered trademark of
Linus Torvalds