Skip to content

Commit

Permalink
Merge pull request #3855 from wiz/fix-seednode-environment-variables
Browse files Browse the repository at this point in the history
Fix seednode systemd service environment variables
  • Loading branch information
sqrrm authored Jan 5, 2020
2 parents 6a9c0c8 + b74b1f3 commit 95326b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions seednode/bisq-seednode.env
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
JAVA_HOME=/usr/lib/jvm/openjdk-10.0.2

# java memory and remote management options
JAVA_OPTS="-Xms8192M -Xmx8192M -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"
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_USER__
BITCOIN_RPC_PASSWORD=__BITCOIN_RPC_PASS__

# bitcoind rpc ports
BITCOIN_RPC_PORT=8332
Expand All @@ -23,7 +23,7 @@ BISQ_BASE_CURRENCY=btc_mainnet
# bisq seednode settings
BISQ_NODE_PORT=8000
BISQ_MAX_CONNECTIONS=50
BISQ_MAX_MEMORY=8000
BISQ_MAX_MEMORY=4000

# set to true for BSQ explorer
BISQ_DUMP_BLOCKCHAIN=false

0 comments on commit 95326b4

Please sign in to comment.