mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
02e7448bda
* Split seednode systemd service ExecStart command into multiple lines * Add setting in seednode configuration to specify btcnode host/port * Tweak seednode torrc configuration options to improve P2P connectivity * Require bitcoin.service from bisq-seednode.service via systemd binding * Make seednode installer run from master and build bisq from release tag * Seednode must be shutdown using `kill -9` until #3884 is fixed * Fix seednode uninstall script to use correct service names * Disable CircuitBuildTimeout in seednode Tor configuration * Disable seednode torrc advanced configuration options for now
36 lines
1.0 KiB
Bash
36 lines
1.0 KiB
Bash
# env for bisq-seednode service
|
|
# install in /etc/default/bisq-seednode
|
|
|
|
# java home, set to openjdk 10
|
|
JAVA_HOME=/usr/lib/jvm/openjdk-10.0.2
|
|
|
|
# java memory and remote management options
|
|
JAVA_OPTS="-Xms4096M -Xmx4096M -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.host=127.0.0.1 -Dcom.sun.management.jmxremote.port=6969 -Dcom.sun.management.jmxremote.rmi.port=6969 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false"
|
|
|
|
# bitcoin rpc credentials
|
|
BITCOIN_RPC_USERNAME=__BITCOIN_RPC_USER__
|
|
BITCOIN_RPC_PASSWORD=__BITCOIN_RPC_PASS__
|
|
|
|
# bitcoin p2p settings
|
|
BITCOIN_P2P_HOST=127.0.0.1
|
|
BITCOIN_P2P_PORT=8333
|
|
|
|
# bitcoind rpc ports
|
|
BITCOIN_RPC_HOST=127.0.0.1
|
|
BITCOIN_RPC_PORT=8332
|
|
BITCOIN_RPC_BLOCKNOTIFY_HOST=127.0.0.1
|
|
BITCOIN_RPC_BLOCKNOTIFY_PORT=5120
|
|
|
|
# bisq seednode pathnames
|
|
BISQ_HOME=__BISQ_HOME__
|
|
BISQ_APP_NAME=bisq-seednode
|
|
BISQ_BASE_CURRENCY=btc_mainnet
|
|
|
|
# bisq seednode settings
|
|
BISQ_NODE_PORT=8000
|
|
BISQ_MAX_CONNECTIONS=50
|
|
BISQ_MAX_MEMORY=4000
|
|
|
|
# set to true for BSQ explorer
|
|
BISQ_DUMP_BLOCKCHAIN=false
|