forked from ayeowch/bitnodes
-
Notifications
You must be signed in to change notification settings - Fork 4
/
start.sh
executable file
·24 lines (18 loc) · 1.07 KB
/
start.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
# --- mainnet ---
nohup python -u crawl.py crawl.mainnet.conf master > crawl.mainnet.master.out 2>&1 &
nohup python -u crawl.py crawl.mainnet.conf slave > crawl.mainnet.slave.1.out 2>&1 &
nohup python -u crawl.py crawl.mainnet.conf slave > crawl.mainnet.slave.2.out 2>&1 &
nohup python -u crawl.py crawl.mainnet.conf slave > crawl.mainnet.slave.3.out 2>&1 &
nohup python -u ping.py ping.conf master > ping.master.out 2>&1 &
nohup python -u ping.py ping.conf slave > ping.slave.1.out 2>&1 &
nohup python -u ping.py ping.conf slave > ping.slave.2.out 2>&1 &
nohup python -u ping.py ping.conf slave > ping.slave.3.out 2>&1 &
nohup python -u ping.py ping.conf slave > ping.slave.4.out 2>&1 &
nohup python -u resolve.py resolve.conf > resolve.out 2>&1 &
nohup python -u export.py export.conf > export.out 2>&1 &
#nohup python -u seeder.py seeder.conf > seeder.out 2>&1 &
nohup python -u pcap.py pcap.conf > pcap.1.out 2>&1 &
nohup python -u pcap.py pcap.conf > pcap.2.out 2>&1 &
# --- testnet3 ---
#nohup python -u crawl.py crawl.testnet3.conf master > crawl.testnet3.master.out 2>&1 &