mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 14:42:37 +01:00
Delete stresstest directory
This commit is contained in:
parent
147ba275be
commit
bdf2a1b1d1
5 changed files with 0 additions and 83 deletions
|
@ -1,11 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd /home/bs/.local/share
|
||||
|
||||
find . -name \*.DS_Store -type f -delete
|
||||
find . -name \*._.DS_Store -type f -delete
|
||||
find . -name \*SequenceNumberMap -type f -delete
|
||||
find . -name \*PersistedPeers -type f -delete
|
||||
find . -name \*bisq.log -type f -delete
|
||||
find . -name \*__MACOSX -type d -delete
|
||||
find . -name \*backup -type d -exec rm -R -f {} +
|
|
@ -1,10 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd /Users/dev/Library/Application\ Support
|
||||
|
||||
for i in `seq 101 500`;
|
||||
do
|
||||
dir=BS_$i
|
||||
mkdir $dir
|
||||
cp -av BS_/* $dir/
|
||||
done
|
|
@ -1,22 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd ../../seednode/target
|
||||
|
||||
logpath=/Users/dev/Documents/_intellij/bisq/logs
|
||||
datapath="/Users/dev/Library/Application Support"
|
||||
mkdir -p $logpath
|
||||
|
||||
# rm "$datapath/bisq_seed_node_hlitt7z4bec4kdh4.onion_8000/db/SequenceNumberMap"
|
||||
# rm "$datapath/bisq_seed_node_hlitt7z4bec4kdh4.onion_8000/db/PersistedPeers"
|
||||
|
||||
# rm "$datapath/BS_arb/mainnet/db/SequenceNumberMap"
|
||||
# rm "$datapath/BS_arb/mainnet/db/PersistedPeers"
|
||||
|
||||
nohup bisq-seednode hlitt7z4bec4kdh4.onion:8000 0 500 >/dev/null 2>$logpath/ST_0_seednode.log &
|
||||
sleep 40
|
||||
|
||||
cd ../../build
|
||||
nohup build/app/bin/bisq-desktop --app.name=BS_arb --maxConnections=12 >/dev/null 2>$logpath/ST_0_arb.log &
|
||||
|
||||
# kill `ps -ef | grep java | grep -v grep | awk '{print $2}'`
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
dir=/Users/dev/Desktop/10_offers
|
||||
|
||||
for i in `seq 1 20`;
|
||||
do
|
||||
echo $i
|
||||
rm $dir/BS_$i/mainnet/tor/tor.real
|
||||
rm $dir/BS_$i/mainnet/tor/geoip
|
||||
rm $dir/BS_$i/mainnet/tor/geoip6
|
||||
rm $dir/BS_$i/mainnet/tor/cached-microdescs
|
||||
rm $dir/BS_$i/mainnet/tor/cached-microdesc-consensus
|
||||
rm $dir/BS_$i/mainnet/db/SequenceNumberMap
|
||||
rm $dir/BS_$i/mainnet/db/PersistedPeers
|
||||
rm -R -f $dir/BS_$i/mainnet/tor/__MACOSX
|
||||
rm -R -f $dir/BS_$i/mainnet/tor/hiddenservice/backup
|
||||
rm -R -f $dir/BS_$i/mainnet/keys/backup
|
||||
rm -R -f $dir/BS_$i/mainnet/db/backup
|
||||
rm -R -f $dir/BS_$i/mainnet/bitcoin/backup
|
||||
done
|
|
@ -1,20 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
logpath=/home/bs/bisq/logs
|
||||
datapath=/home/bs/.local/share
|
||||
|
||||
mkdir -p $logpath
|
||||
|
||||
cd ../../build
|
||||
|
||||
delay=40
|
||||
# edit start end index
|
||||
for i in `seq 0 0`;
|
||||
do
|
||||
echo $i
|
||||
nohup build/app/bin/bisq-desktop --app.name=BS_$i --maxConnections=12 >/dev/null 2>$logpath/ST_$i.log &
|
||||
sleep $delay
|
||||
done
|
||||
|
||||
# kill `ps -ef | grep java | grep -v grep | awk '{print $2}'`
|
||||
|
Loading…
Add table
Reference in a new issue