forked from Someguy123/steem-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.sh
executable file
·297 lines (268 loc) · 7.4 KB
/
run.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
#!/bin/bash
#
# Steem node manager
# Released under GNU AGPL by Someguy123
#
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
DOCKER_DIR="$DIR/dkr"
FULL_DOCKER_DIR="$DIR/dkr_fullnode"
DATADIR="$DIR/data"
DOCKER_NAME="seed"
BOLD="$(tput bold)"
RED="$(tput setaf 1)"
GREEN="$(tput setaf 2)"
YELLOW="$(tput setaf 3)"
BLUE="$(tput setaf 4)"
MAGENTA="$(tput setaf 5)"
CYAN="$(tput setaf 6)"
WHITE="$(tput setaf 7)"
RESET="$(tput sgr0)"
# default. override in .env
PORTS="2001"
if [[ -f .env ]]; then
source .env
fi
if [[ ! -f data/witness_node_data_dir/config.ini ]]; then
echo "config.ini not found. copying example (seed)";
cp data/witness_node_data_dir/config.ini.example data/witness_node_data_dir/config.ini
fi
IFS=","
DPORTS=""
for i in $PORTS; do
if [[ $i != "" ]]; then
if [[ $DPORTS == "" ]]; then
DPORTS="-p0.0.0.0:$i:$i"
else
DPORTS="$DPORTS -p0.0.0.0:$i:$i"
fi
fi
done
help() {
echo "Usage: $0 COMMAND [DATA]"
echo
echo "Commands: "
echo " start - starts steem container"
echo " dlblocks - download and decompress the blockchain to speed up your first start"
echo " replay - starts steem container (in replay mode)"
echo " shm_size - resizes /dev/shm to size given, e.g. ./run.sh shm_size 10G "
echo " stop - stops steem container"
echo " status - show status of steem container"
echo " restart - restarts steem container"
echo " install_docker - install docker"
echo " install - pulls latest docker image from server (no compiling)"
echo " install_full - pulls latest (FULL NODE FOR RPC) docker image from server (no compiling)"
echo " rebuild - builds steem container (from docker file), and then restarts it"
echo " build - only builds steem container (from docker file)"
echo " logs - show all logs inc. docker logs, and steem logs"
echo " wallet - open cli_wallet in the container"
echo " remote_wallet - open cli_wallet in the container connecting to a remote seed"
echo " enter - enter a bash session in the container"
echo
exit
}
optimize() {
echo 75 | sudo tee /proc/sys/vm/dirty_background_ratio
echo 1000 | sudo tee /proc/sys/vm/dirty_expire_centisecs
echo 80 | sudo tee /proc/sys/vm/dirty_ratio
echo 30000 | sudo tee /proc/sys/vm/dirty_writeback_centisecs
}
build() {
echo $GREEN"Building docker container"$RESET
cd $DOCKER_DIR
docker build -t steem .
}
build_full() {
echo $GREEN"Building full-node docker container"$RESET
cd $FULL_DOCKER_DIR
docker build -t steem .
}
dlblocks() {
if [[ ! -d "$DATADIR/blockchain" ]]; then
mkdir "$DATADIR/blockchain"
fi
echo "Removing old block log"
sudo rm -f $DATADIR/witness_node_data_dir/blockchain/block_log
sudo rm -f $DATADIR/witness_node_data_dir/blockchain/block_log.index
echo "Download @gtg's block logs..."
if [[ ! $(command -v xz) ]]; then
echo "XZ not found. Attempting to install..."
sudo apt update
sudo apt install -y xz-utils
fi
wget https://gtg.steem.house/get/blockchain.xz/block_log.xz -O $DATADIR/witness_node_data_dir/blockchain/block_log.xz
echo "Decompressing block log... this may take a while..."
xz -d $DATADIR/witness_node_data_dir/blockchain/block_log.xz
echo "FINISHED. Blockchain downloaded and decompressed"
echo "Remember to resize your /dev/shm, and run with replay!"
echo "$ ./run.sh shm_size SIZE (e.g. 8G)"
echo "$ ./run.sh replay"
}
install_docker() {
sudo apt update
sudo apt install curl git
curl https://get.docker.com | sh
if [ "$EUID" -ne 0 ]; then
echo "Adding user $(whoami) to docker group"
sudo usermod -aG docker $(whoami)
echo "IMPORTANT: Please re-login (or close and re-connect SSH) for docker to function correctly"
fi
}
install() {
echo "Loading image from someguy123/steem"
docker pull someguy123/steem
echo "Tagging as steem"
docker tag someguy123/steem steem
echo "Installation completed. You may now configure or run the server"
}
install_full() {
echo "Loading image from someguy123/steem"
docker pull someguy123/steem:latest-full
echo "Tagging as steem"
docker tag someguy123/steem:latest-full steem
echo "Installation completed. You may now configure or run the server"
}
seed_exists() {
seedcount=$(docker ps -a -f name="^/"$DOCKER_NAME"$" | wc -l)
if [[ $seedcount -eq 2 ]]; then
return 0
else
return -1
fi
}
seed_running() {
seedcount=$(docker ps -f 'status=running' -f name=$DOCKER_NAME | wc -l)
if [[ $seedcount -eq 2 ]]; then
return 0
else
return -1
fi
}
start() {
echo $GREEN"Starting container..."$RESET
seed_exists
if [[ $? == 0 ]]; then
docker start $DOCKER_NAME
else
docker run $DPORTS -v /dev/shm:/shm -v "$DATADIR":/steem -d --name $DOCKER_NAME -t steem
fi
}
replay() {
echo "Removing old container"
docker rm $DOCKER_NAME
echo "Running steem with replay..."
docker run $DPORTS -v /dev/shm:/shm -v "$DATADIR":/steem -d --name $DOCKER_NAME -t steem steemd --replay
echo "Started."
}
shm_size() {
echo "Setting SHM to $1"
mount -o remount,size=$1 /dev/shm
}
stop() {
echo $RED"Stopping container..."$RESET
docker stop $DOCKER_NAME
docker rm $DOCKER_NAME
}
enter() {
docker exec -it $DOCKER_NAME bash
}
wallet() {
docker exec -it $DOCKER_NAME cli_wallet
}
remote_wallet() {
docker run -v "$DATADIR":/steem --rm -it steem cli_wallet -s wss://steemd.privex.io
}
logs() {
echo $BLUE"DOCKER LOGS: "$RESET
docker logs --tail=30 $DOCKER_NAME
#echo $RED"INFO AND DEBUG LOGS: "$RESET
#tail -n 30 $DATADIR/{info.log,debug.log}
}
status() {
seed_exists
if [[ $? == 0 ]]; then
echo "Container exists?: "$GREEN"YES"$RESET
else
echo "Container exists?: "$RED"NO (!)"$RESET
echo "Container doesn't exist, thus it is NOT running. Run $0 build && $0 start"$RESET
return
fi
seed_running
if [[ $? == 0 ]]; then
echo "Container running?: "$GREEN"YES"$RESET
else
echo "Container running?: "$RED"NO (!)"$RESET
echo "Container isn't running. Start it with $0 start"$RESET
return
fi
}
if [ "$#" -lt 1 ]; then
help
fi
case $1 in
build)
echo "You may want to use '$0 install' for a binary image instead, it's faster."
build
;;
build_full)
echo "You may want to use '$0 install_full' for a binary image instead, it's faster."
build_full
;;
install_docker)
install_docker
;;
install)
install
;;
install_full)
install_full
;;
start)
start
;;
replay)
replay
;;
shm_size)
shm_size $2
;;
stop)
stop
;;
restart)
stop
sleep 5
start
;;
rebuild)
stop
sleep 5
build
start
;;
optimize)
echo "Applying recommended dirty write settings..."
optimize
;;
status)
status
;;
wallet)
wallet
;;
remote_wallet)
remote_wallet
;;
dlblocks)
dlblocks
;;
enter)
enter
;;
logs)
logs
;;
*)
echo "Invalid cmd"
help
;;
esac