-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
264 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,6 @@ | |
|
||
.local/ | ||
|
||
.idea/ | ||
.idea/ | ||
|
||
/qa-env-resource/machines_meta.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[Unit] | ||
Description=bsc | ||
After=network.target | ||
|
||
[Service] | ||
Type=simple | ||
User=root | ||
Group=root | ||
ExecStart=/server/validator/chaind.sh -start | ||
ExecReload=/server/validator/chaind.sh -restart | ||
ExecStop=/server/validator/chaind.sh -stop | ||
PrivateTmp=true | ||
Restart=always | ||
LimitNOFILE=10000 | ||
RestartSec=5 | ||
StartLimitInterval=0 | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
#!/bin/bash | ||
|
||
export GOGC=200 | ||
# default values | ||
FullImmutabilityThreshold=90000 | ||
MinBlocksForBlobRequests=524288 | ||
DefaultExtraReserveForBlobRequests=28800 | ||
BreatheBlockInterval=600 | ||
FixedTurnLength=1 | ||
LAST_FORK_MORE_DELAY=1800 | ||
|
||
function startChaind() { | ||
workspace=/server/validator | ||
|
||
PassedForkTime=`cat ${workspace}/hardforkTime.txt|grep passedHardforkTime|awk -F" " '{print $NF}'` | ||
LastHardforkTime=$(expr ${PassedForkTime} + ${LAST_FORK_MORE_DELAY}) | ||
initLog=${workspace}/init.log | ||
rialtoHash=`cat ${initLog}|grep "database=lightchaindata"|awk -F"=" '{print $NF}'|awk -F'"' '{print $1}'` | ||
|
||
ip=`ifconfig eth0|grep inet|grep -v inet6 |awk '{ print $2 }'` | ||
sed -i -e "s?FileRoot = \"\"?FileRoot = \"/mnt/efs/validator/${ip}/\"?g" /server/validator/config.toml | ||
mkdir -p /mnt/efs/validator/${ip} | ||
${workspace}/bsc --config ${workspace}/config.toml \ | ||
--datadir ${workspace} \ | ||
--password ${workspace}/password.txt \ | ||
--blspassword ${workspace}/password.txt \ | ||
--unlock {{validatorAddr}} --miner.etherbase {{validatorAddr}} --rpc.allow-unprotected-txs --allow-insecure-unlock \ | ||
--ws --ws.port 8545 --ws.addr ${ip} --http.addr 0.0.0.0 --http.corsdomain "*" \ | ||
--metrics --metrics.addr 0.0.0.0 \ | ||
--pprof --pprof.port 6061 \ | ||
--syncmode snap --mine --vote --monitor.maliciousvote \ | ||
--cache 10480 --light.serve 50 \ | ||
--rialtohash ${rialtoHash} --override.passedforktime ${PassedForkTime} --override.bohr ${LastHardforkTime} \ | ||
--override.immutabilitythreshold ${FullImmutabilityThreshold} --override.breatheblockinterval ${BreatheBlockInterval} \ | ||
--override.minforblobrequest ${MinBlocksForBlobRequests} --override.defaultextrareserve ${DefaultExtraReserveForBlobRequests} \ | ||
# --override.fixedturnlength ${FixedTurnLength} \ | ||
>> /mnt/efs/validator/${ip}/bscnode.log 2>&1 | ||
} | ||
|
||
function stopChaind() { | ||
pid=`ps -ef | grep /server/validator/bsc | grep -v grep | awk '{print $2}'` | ||
if [ -n "$pid" ]; then | ||
for((i=1;i<=4;i++)); | ||
do | ||
kill $pid | ||
sleep 5 | ||
pid=`ps -ef | grep /server/validator/bsc | grep -v grep | awk '{print $2}'` | ||
if [ -z "$pid" ]; then | ||
break | ||
elif [ $i -eq 4 ]; then | ||
kill -9 $kid | ||
fi | ||
done | ||
fi | ||
} | ||
|
||
CMD=$1 | ||
|
||
case $CMD in | ||
-start) | ||
echo "start" | ||
startChaind | ||
;; | ||
-stop) | ||
echo "stop" | ||
stopChaind | ||
;; | ||
-restart) | ||
stopChaind | ||
sleep 3 | ||
startChaind | ||
;; | ||
*) | ||
echo "Usage: chaind.sh -start | -stop | -restart .Or use systemctl start | stop | restart bsc.service " | ||
;; | ||
esac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
[Eth] | ||
NetworkId = 714 | ||
SyncMode = "full" | ||
NoPruning = false | ||
NoPrefetch = false | ||
LightPeers = 100 | ||
TrieTimeout = 100000000000 | ||
DatabaseCache = 512 | ||
DatabaseFreezer = "" | ||
TriesInMemory = 128 | ||
TrieCleanCache = 256 | ||
TrieDirtyCache = 256 | ||
EnablePreimageRecording = false | ||
|
||
[Eth.Miner] | ||
GasFloor = 500000000 | ||
GasCeil = 500000000 | ||
GasPrice = 1000000000 | ||
Recommit = 10000000000 | ||
|
||
[Eth.TxPool] | ||
Locals = [] | ||
NoLocals = true | ||
Journal = "transactions.rlp" | ||
Rejournal = 3600000000000 | ||
PriceLimit = 1000000000 | ||
PriceBump = 10 | ||
AccountSlots = 512 | ||
GlobalSlots = 10000 | ||
AccountQueue = 256 | ||
GlobalQueue = 5000 | ||
Lifetime = 10800000000000 | ||
|
||
[Eth.GPO] | ||
Blocks = 20 | ||
Percentile = 60 | ||
OracleThreshold = 1000 | ||
|
||
[Node] | ||
IPCPath = "geth.ipc" | ||
HTTPHost = "localhost" | ||
NoUSB = true | ||
InsecureUnlockAllowed = false | ||
HTTPPort = 8545 | ||
HTTPVirtualHosts = ["localhost"] | ||
HTTPModules = ["eth", "net", "web3", "txpool", "parlia", "miner"] | ||
WSPort = 8546 | ||
WSModules = ["net", "web3", "eth"] | ||
|
||
[Node.P2P] | ||
MaxPeers = 30 | ||
NoDiscovery = false | ||
ListenAddr = ":30311" | ||
EnableMsgEvents = false | ||
|
||
[Node.HTTPTimeouts] | ||
ReadTimeout = 30000000000 | ||
WriteTimeout = 30000000000 | ||
IdleTimeout = 120000000000 | ||
|
||
[Node.LogConfig] | ||
FilePath = "bsc.log" | ||
MaxBytesSize = 10485760 | ||
Level = "info" | ||
FileRoot = "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
workspace=$(cd `dirname $0`; pwd) | ||
|
||
cp ${workspace}/bsc.service /usr/lib/systemd/system/ | ||
chmod +x ${workspace}/start.sh ${workspace}/chaind.sh ${workspace}/bsc | ||
|
||
service bsc stop | ||
rm -rf /server/validator | ||
mv ${workspace} /server/validator | ||
|
||
/server/validator/start.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
systemctl daemon-reload | ||
chkconfig bsc on | ||
service bsc restart |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env bash | ||
|
||
service bsc stop | ||
cp /tmp/bsc /server/validator/bsc | ||
|
||
#cd /server/validator/geth/ | ||
#rm -rf chaindata les.server nodes triecache | ||
|
||
#sed -i -e 's/sleep 5/sleep 40/' /server/validator/chaind.sh | ||
#sed -i -e 's/FixedTurnLength=1/FixedTurnLength=4/' /server/validator/chaind.sh | ||
|
||
#/server/validator/bsc init --datadir /server/validator/ /server/validator/genesis.json | ||
|
||
#sed -i -e 's/HTTPModules = \[/HTTPModules = \["debug",/g' /server/validator/config.toml | ||
#sed -i -e 's/GlobalSlots = 10000/GlobalSlots = 10000/g' /server/validator/config.toml | ||
#sed -i -e 's/GlobalQueue = 5000/GlobalQueue = 5000/g' /server/validator/config.toml | ||
#sed -i -e 's/Level = "info"/Level = "debug"/g' /server/validator/config.toml | ||
|
||
service bsc start |
Oops, something went wrong.