-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
407 lines (297 loc) · 12.6 KB
/
setup.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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
#!/bin/bash
echo -e " ";
echo -e " ______ ";
echo -e " / ____/___ ____ ____ ___ _____ _________ _____ ";
echo -e " / / / __ \/ __ \/ __ / / / / _ \/ ___/ __ \/ ___/ ";
echo -e "/ /___/ /_/ / / / / /_/ / /_/ / __/ / / /_/ / / ";
echo -e "\____/\____/_/ /_/\__ /\__ _/\___/_/ \____/_/ ";
echo -e " /_/ ";
echo -e " ";
echo -e "\033[38;5;245mTwitter : https://x.com/cqrlabs_tech\033[0m"
echo -e "\033[38;5;245mGithub : https://github.com/DasRasyo\033[0m"
echo -e "\033[35mCelestia - Modularism, not maximalism\033[0m"
sleep 5
echo "Which node would you like to install? (l: light node, f: full node, b: bridge node)"
read node_type
case $node_type in
l)
echo -e "\033[35mLight Node! Good Choice!\033[0m"
sleep 7
echo -e "\033[38;5;205m⚠️Starting with Packages update and Dependencies Install⚠️\033[0m"
sleep 5
sudo apt update && apt upgrade -y && sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential \
git make ncdu -y
sleep 5
echo -e "\033[38;5;205m⚠️Installing GO⚠️\033[0m"
sleep 10
cd $HOME
curl -Ls https://go.dev/dl/go1.21.1.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
touch $HOME/.bash_profile
source $HOME/.bash_profile
PATH_INCLUDES_GO=$(grep "$HOME/go/bin" $HOME/.bash_profile)
if [ -z "$PATH_INCLUDES_GO" ]; then
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
echo "export GOPATH=$HOME/go" >> $HOME/.bash_profile
fi
eval $(echo 'export PATH=$PATH:/usr/local/go/bin' | sudo tee /etc/profile.d/golang.sh)
eval $(echo 'export PATH=$PATH:$HOME/go/bin' | tee -a $HOME/.profile)
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile
sleep 5
source $HOME/.bash_profile
echo -e "\033[38;5;205mPackages updated, Go and Dependencies Inslalled. You can check your go version with = go version\033[0m"
sleep 7
echo -e "\033[35mDownloading the Celestia-Node\033[0m"
sleep 10
cd $HOME
rm -rf celestia-node
git clone https://github.com/celestiaorg/celestia-node.git
cd celestia-node/
git checkout tags/v0.17.2
make build
make install
make cel-key
sleep 5
echo -e "\033[35mLight Node is initializing\033[0m"
sleep 8
echo -e "\033[35mWith this step your wallet will be created!\033[0m"
sleep 5
echo -e "\033[31m⚠️⚠️⚠️Please do not forget to save your mnemonics!!!. If you dont save you can not access your wallet. You will have 100 second to save your mnemonics. After that script will continued!⚠️⚠️⚠️\033[0m"
echo -e "\033[31m⚠️⚠️⚠️ SAVE THE MNEMONICS⚠️⚠️⚠️\033[0m"
sleep 8
celestia light init --core.ip rpc.celestia.pops.one
sleep 100
echo -e "\033[35mStarting Service\033[0m"
sudo tee <<EOF >/dev/null /etc/systemd/system/celestia-lightd.service
[Unit]
Description=celestia-lightd Light Node
After=network-online.target
[Service]
User=$USER
ExecStart=/usr/local/bin/celestia light start --core.ip rpc.celestia.pops.one --core.rpc.port 26657 --core.grpc.port 9090 --keyring.accname my_celes_key --metrics.tls=true --metrics --metrics.endpoint otel.celestia.observer --p2p.network celestia
Restart=on-failure
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOF
sleep 3
systemctl enable celestia-lightd
systemctl start celestia-lightd
echo -e "\033[35mLight Node Started Congrats!\033[0m"
sleep 3
echo -e "\033[35mSome Useful Command That You May Need For Service. Copy and Save!\033[0m"
sleep 3
echo -e "\033[35mCheck Your Logs: sudo journalctl -u celestia-lightd -f --no-hostname -o cat\033[0m"
sleep 3
echo -e "\033[35mStop the Service: sudo systemctl stop celestia-lightd\033[0m"
sleep 3
echo -e "\033[35mStart the Service: sudo systemctl start celestia-lightd\033[0m"
sleep 3
echo -e "\033[35mRestart the Service: sudo systemctl restart celestia-lightd\033[0m"
sleep 20
echo -e "\033[35mNow we will Check Your Node ID. Please save it.\033[0m"
sleep 10
AUTH_TOKEN=$(celestia light auth admin --p2p.network celestia)
curl -X POST \
-H "Authorization: Bearer $AUTH_TOKEN" \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":0,"method":"p2p.Info","params":[]}' \
http://localhost:26658
sleep 20
echo -e "\033[38;5;205m⚠️⚠️⚠️Important NOTE: You need to back up the keys folder under the .celestia-light folder with WinSCP or a tool with the same function. Your key and ID information is there. Be sure to back up this folder!\033[0m"
sleep 4
echo -e "\033[35mGood Luck My Modular Friend!\033[0m"
sleep 10
;;
f)
echo -e "\033[35mFull Node! Good Choice!\033[0m"
sleep 7
echo -e "\033[38;5;205m⚠️Starting with Packages update and Dependencies Inslall⚠️\033[0m"
sleep 5
sudo apt update && apt upgrade -y && sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential \
git make ncdu -y
sleep 5
echo -e "\033[38;5;205m⚠️Installing GO⚠️\033[0m"
sleep 10
cd $HOME
curl -Ls https://go.dev/dl/go1.21.1.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
touch $HOME/.bash_profile
source $HOME/.bash_profile
PATH_INCLUDES_GO=$(grep "$HOME/go/bin" $HOME/.bash_profile)
if [ -z "$PATH_INCLUDES_GO" ]; then
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
echo "export GOPATH=$HOME/go" >> $HOME/.bash_profile
fi
eval $(echo 'export PATH=$PATH:/usr/local/go/bin' | sudo tee /etc/profile.d/golang.sh)
eval $(echo 'export PATH=$PATH:$HOME/go/bin' | tee -a $HOME/.profile)
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile
sleep 5
source $HOME/.bash_profile
echo -e "\033[38;5;205mPackages updated, Go and Dependencies Inslalled. You can check your go version with = go version\033[0m"
sleep 7
echo -e "\033[35mDownloading the Celestia-Node\033[0m"
sleep 10
cd $HOME
rm -rf celestia-node
git clone https://github.com/celestiaorg/celestia-node.git
cd celestia-node/
git checkout tags/v0.17.2
make build
make install
make cel-key
sleep 5
echo -e "\033[35mFull Node is initializing\033[0m"
sleep 8
echo -e "\033[31mWith this step your wallet will be created!\033[0m"
sleep 5
echo -e "\033[31m⚠️⚠️⚠️Please do not forget to save your mnemonics!!!. If you dont save you can not access your wallet. You will have 100 second to save your mnemonics. After that script will continued!⚠️⚠️⚠️\033[0m"
echo -e "\033[31m⚠️⚠️⚠️ SAVE THE MNEMONICS⚠️⚠️⚠️\033[0m"
sleep 8
celestia full init --core.ip rpc.celestia.pops.one
sleep 100
echo -e "\033[35mStarting Service\033[0m"
sudo tee <<EOF >/dev/null /etc/systemd/system/celestia-fulld.service
[Unit]
Description=celestia-fulld Full Node
After=network-online.target
[Service]
User=$USER
ExecStart=/usr/local/bin/celestia full start --core.ip rpc.celestia.pops.one --core.rpc.port 26657 --core.grpc.port 9090 --keyring.accname my_celes_key --metrics.tls=true --metrics --metrics.endpoint otel.celestia.observer --p2p.network celestia
Restart=on-failure
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOF
sleep 3
systemctl enable celestia-fulld
systemctl start celestia-fulld
echo -e "\033[35mFull Node Started Congrats!\033[0m"
sleep 3
echo -e "\033[35mSome Useful Command That You May Need For Service. Copy and Save!\033[0m"
sleep 3
echo -e "\033[35mCheck Your Logs: sudo journalctl -u celestia-fulld -f --no-hostname -o cat\033[0m"
sleep 3
echo -e "\033[35mStop the Service: sudo systemctl stop celestia-fulld\033[0m"
sleep 3
echo -e "\033[35mStart the Service: sudo systemctl start celestia-fulld\033[0m"
sleep 3
echo -e "\033[35mRestart the Service: sudo systemctl restart celestia-fulld\033[0m"
sleep 20
echo -e "\033[35mNow we will Check Your Node ID. Please save it.\033[0m"
sleep 5
AUTH_TOKEN=$(celestia full auth admin --p2p.network celestia)
curl -X POST \
-H "Authorization: Bearer $AUTH_TOKEN" \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":0,"method":"p2p.Info","params":[]}' \
http://localhost:26658
sleep 20
echo -e "\033[38;5;205m⚠️⚠️⚠️Important NOTE: You need to back up the keys folder under the .celestia-full folder with WinSCP or a tool with the same function. Your key information is there. Be sure to back up this folder!\033[0m"
sleep 4
echo -e "\033[35mGood Luck My Modular Friend!\033[0m"
sleep 10
;;
b)
echo -e "\033[35mBridge Node! Good Choice!\033[0m"
sleep 7
prompt() {
read -p "$1: " val
echo $val
}
echo -e "\033[38;5;205m⚠️Starting with Packages update and Dependencies Inslall⚠️\033[0m"
sleep 5
sudo apt update && apt upgrade -y && sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential \
git make ncdu -y
sleep 5
echo -e "\033[38;5;205m⚠️Installing GO⚠️\033[0m"
sleep 10
cd $HOME
curl -Ls https://go.dev/dl/go1.21.1.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
touch $HOME/.bash_profile
source $HOME/.bash_profile
PATH_INCLUDES_GO=$(grep "$HOME/go/bin" $HOME/.bash_profile)
if [ -z "$PATH_INCLUDES_GO" ]; then
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
echo "export GOPATH=$HOME/go" >> $HOME/.bash_profile
fi
eval $(echo 'export PATH=$PATH:/usr/local/go/bin' | sudo tee /etc/profile.d/golang.sh)
eval $(echo 'export PATH=$PATH:$HOME/go/bin' | tee -a $HOME/.profile)
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile
sleep 5
source $HOME/.bash_profile
echo -e "\033[38;5;205mPackages updated, Go and Dependencies Inslalled. You can check your go version with = go version\033[0m"
sleep 5
echo -e "\033[35mSetting up celestia-node\033[0m"
sleep 5
cd $HOME
rm -rf celestia-node
git clone https://github.com/celestiaorg/celestia-node.git
cd celestia-node/
git checkout tags/v0.17.2
make build
make install
make cel-key
sleep 5
echo -e "\033[35mBridge Node is initializing\033[0m"
sleep 8
echo -e "\033[31mWith this step your wallet will be created!\033[0m"
sleep 5
echo -e "\033[31m⚠️⚠️⚠️Please do not forget to save your mnemonics!!!. If you dont save you can not access your wallet. You will have 100 second to save your mnemonics. After that script will continued!⚠️⚠️⚠️\033[0m"
sleep 5
echo -e "\033[31m⚠️⚠️⚠️ SAVE THE MNEMONICS⚠️⚠️⚠️\033[0m"
sleep 3
celestia bridge init --core.ip rpc.celestia.pops.one
sleep 100
echo -e "\033[35mStarting Service for Bridge Node\033[0m"
sleep 5
sudo tee <<EOF >/dev/null /etc/systemd/system/celestia-bridge.service
[Unit]
Description=celestia-bridge daemon
After=network-online.target
[Service]
User=$USER
ExecStart=/usr/local/bin/celestia bridge start --core.ip rpc.celestia.pops.one --core.rpc.port 26657 --core.grpc.port 9090 --keyring.accname my_celes_key --metrics.tls=true --metrics --metrics.endpoint otel.celestia.observer --p2p.network celestia
Restart=on-failure
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOF
sleep 3
sudo systemctl enable celestia-bridge
sudo systemctl start celestia-bridge
echo -e "\033[35mBridge Node Started. Congrats!\033[0m"
sleep 5
echo -e "\033[35mSome Useful Command That You May Need For Bridge Node Service. Copy and Save!\033[0m"
sleep 3
echo -e "\033[35mCheck Your Logs: sudo journalctl -u celestia-bridge -f --no-hostname -o cat\033[0m"
sleep 3
echo -e "\033[35mStop the Service: sudo systemctl stop celestia-bridge\033[0m"
sleep 3
echo -e "\033[35mStart the Service: sudo systemctl start celestia-bridge\033[0m"
sleep 3
echo -e "\033[35mRestart the Service: sudo systemctl restart celestia-bridge\033[0m"
sleep 20
echo -e "\033[35mNow we will Check Your Node ID. Please save it.\033[0m"
sleep 7
AUTH_TOKEN=$(celestia bridge auth admin --p2p.network celestia)
curl -X POST \
-H "Authorization: Bearer $AUTH_TOKEN" \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":0,"method":"p2p.Info","params":[]}' \
http://localhost:26658
sleep 20
echo -e "\033[38;5;205m⚠️⚠️⚠️Important NOTE: You need to back up the keys folder under the .celestia-bridge folder with WinSCP or a tool with the same function. Your key and ID information is there. Be sure to back up this folder!\033[0m"
sleep 10
echo -e "\033[38;5;205mNOTE: As the network moves forward, it may take a little more time to synchronize to the network. If you want to continue without waiting, you can use the snapshot provided by the Itrocket team. For details: https://itrocket.net/services/mainnet/celestia/bridge-node/ \033[0m"
echo -e "\033[35mGood Luck My Modular Friend!\033[0m"
sleep 10
;;
*)
echo -e "\033[35mInvalid option. Please enter either l, f or b\033[0m"
;;
esac