You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
929 B
37 lines
929 B
#!/bin/sh
|
|
###############
|
|
# run_electrumx
|
|
###############
|
|
|
|
# configure electrumx
|
|
export COIN=Bitcoin
|
|
export DAEMON_URL=http://rpcuser:rpcpassword@127.0.0.1
|
|
export NET=mainnet
|
|
export CACHE_MB=400
|
|
export DB_DIRECTORY=/home/username/.electrumx/db
|
|
export SSL_CERTFILE=/home/username/.electrumx/certfile.crt
|
|
export SSL_KEYFILE=/home/username/.electrumx/keyfile.key
|
|
export BANNER_FILE=/home/username/.electrumx/banner
|
|
export DONATION_ADDRESS=your-donation-address
|
|
|
|
# connectivity
|
|
export HOST=
|
|
export TCP_PORT=50001
|
|
export SSL_PORT=50002
|
|
|
|
# visibility
|
|
export IRC=
|
|
export IRC_NICK=hostname
|
|
export REPORT_HOST=hostname.com
|
|
export RPC_PORT=8000
|
|
|
|
# run electrumx
|
|
ulimit -n 10000
|
|
/usr/local/bin/electrumx_server.py 2>> /home/username/.electrumx/electrumx.log >> /home/username/.electrumx/electrumx.log &
|
|
|
|
######################
|
|
# auto-start electrumx
|
|
######################
|
|
|
|
# add this line to crontab -e
|
|
# @reboot /path/to/run_electrumx.sh
|
|
|