-
Notifications
You must be signed in to change notification settings - Fork 2
/
dixicoin451_install.sh
314 lines (277 loc) · 11.1 KB
/
dixicoin451_install.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
#!/bin/bash
TMP_FOLDER=$(mktemp -d)
CONFIG_FILE='dixicoin.conf'
CONFIGFOLDER='/root/.dixicoin'
COIN_DAEMON='dixicoind'
COIN_CLI='dixicoin-cli'
COIN_PATH='/usr/local/bin/'
COIN_TGZ='https://github.com/Dixicoin-DXC/Dixicoin/releases/download/v4.5.1/DixiCoin-4.5.1-x86_64-pc-linux-gnu.zip'
COIN_ZIP=$(echo $COIN_TGZ | awk -F'/' '{print $NF}')
COIN_NAME='dixicoin'
COIN_PORT=61150
RPC_PORT=51473
NODEIP=$(curl -s4 icanhazip.com)
BLUE="\033[0;34m"
YELLOW="\033[0;33m"
CYAN="\033[0;36m"
PURPLE="\033[0;35m"
RED='\033[0;31m'
GREEN="\033[0;32m"
NC='\033[0m'
MAG='\e[1;35m'
purgeOldInstallation() {
echo -e "${GREEN}Searching and removing old $COIN_NAME files and configurations${NC}"
# kill wallet daemon
sudo killall $COIN_DAEMON > /dev/null 2>&1
# remove old ufw port allow
#sudo ufw delete allow $COIN_PORT/tcp > /dev/null 2>&1
# remove old files
sudo rm $COIN_CLI $COIN_DAEMON > /dev/null 2>&1
#if [ -d "~/.$COIN_NAME/$CONFIG_FILE" ]; then
#sudo rm -rf ~/.$COIN_NAME/$CONFIG_FILE > /dev/null 2>&1
# remove binaries and $COIN_NAME utilities
cd /usr/local/bin && sudo rm $COIN_CLI $COIN_DAEMON > /dev/null 2>&1 && cd
echo -e "${GREEN}* Done${NONE}"
}
# function install_sentinel() {
# echo -e "${GREEN}Installing sentinel.${NC}"
# apt-get -y install python-virtualenv virtualenv >/dev/null 2>&1
# git clone $SENTINEL_REPO $CONFIGFOLDER/sentinel >/dev/null 2>&1
# cd $CONFIGFOLDER/sentinel
# virtualenv ./venv >/dev/null 2>&1
# ./venv/bin/pip install -r requirements.txt >/dev/null 2>&1
# echo "* * * * * cd $CONFIGFOLDER/sentinel && ./venv/bin/python bin/sentinel.py >> $CONFIGFOLDER/sentinel.log 2>&1" > $CONFIGFOLDER/$COIN_NAME.cron
# crontab $CONFIGFOLDER/$COIN_NAME.cron
# rm $CONFIGFOLDER/$COIN_NAME.cron >/dev/null 2>&1
function download_node() {
echo -e "${GREEN}Downloading and Installing VPS $COIN_NAME Daemon. Screen may appear to hang, please wait.Speed determined by your vps status.${NC}"
cd $TMP_FOLDER >/dev/null 2>&1
wget -q $COIN_TGZ
compile_error
unzip $COIN_ZIP >/dev/null 2>&1
chmod +x $COIN_DAEMON $COIN_CLI
cp $COIN_DAEMON $COIN_CLI $COIN_PATH
cd ~ >/dev/null 2>&1
rm -rf $TMP_FOLDER >/dev/null 2>&1
clear
}
function configure_systemd() {
cat << EOF > /etc/systemd/system/$COIN_NAME.service
[Unit]
Description=$COIN_NAME service
After=network.target
[Service]
User=root
Group=root
Type=forking
#PIDFile=$CONFIGFOLDER/$COIN_NAME.pid
ExecStart=$COIN_PATH$COIN_DAEMON -daemon -conf=$CONFIGFOLDER/$CONFIG_FILE -datadir=$CONFIGFOLDER
ExecStop=-$COIN_PATH$COIN_CLI -conf=$CONFIGFOLDER/$CONFIG_FILE -datadir=$CONFIGFOLDER stop
Restart=always
PrivateTmp=true
TimeoutStopSec=60s
TimeoutStartSec=10s
StartLimitInterval=120s
StartLimitBurst=5
[Install]
WantedBy=multi-user.target
EOF
systemctl daemon-reload
sleep 3
systemctl start $COIN_NAME.service
systemctl enable $COIN_NAME.service >/dev/null 2>&1
if [[ -z "$(ps axo cmd:100 | egrep $COIN_DAEMON)" ]]; then
echo -e "${RED}$COIN_NAME is not running${NC}, please investigate. You should start by running the following commands as root:"
echo -e "${GREEN}systemctl start $COIN_NAME.service"
echo -e "systemctl status $COIN_NAME.service"
echo -e "less /var/log/syslog${NC}"
exit 1
fi
}
function create_config() {
mkdir $CONFIGFOLDER >/dev/null 2>&1
RPCUSER=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w10 | head -n1)
RPCPASSWORD=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w22 | head -n1)
cat << EOF > $CONFIGFOLDER/$CONFIG_FILE
rpcuser=$RPCUSER
rpcpassword=$RPCPASSWORD
rpcport=$RPC_PORT
rpcallowip=127.0.0.1
listen=0
server=1
daemon=1
port=$COIN_PORT
EOF
}
function create_key() {
echo -e "${YELLOW}Enter your ${RED}$COIN_NAME Masternode GEN Key${NC}."
read -e COINKEY
if [[ -z "$COINKEY" ]]; then
$COIN_PATH$COIN_DAEMON -daemon
sleep 30
if [ -z "$(ps axo cmd:100 | grep $COIN_DAEMON)" ]; then
echo -e "${RED}$COIN_NAME server could not start. Check /var/log/syslog for errors.{$NC}"
exit 1
fi
COINKEY=$($COIN_PATH$COIN_CLI masternode genkey)
if [ "$?" -gt "0" ];
then
echo -e "${RED}Wallet not fully loaded. Please wait and try again to generate the GEN Key${NC}"
sleep 30
COINKEY=$($COIN_PATH$COIN_CLI masternode genkey)
fi
$COIN_PATH$COIN_CLI stop
fi
clear
}
function update_config() {
sed -i 's/daemon=1/daemon=1/' $CONFIGFOLDER/$CONFIG_FILE
cat << EOF >> $CONFIGFOLDER/$CONFIG_FILE
logintimestamps=1
maxconnections=256
#bind=$NODEIP
masternode=1
externalip=$NODEIP:$COIN_PORT
masternodeprivkey=$COINKEY
staking=0
addnode=119.27.163.238
addnode=159.69.16.114
addnode=83.243.67.227
addnode=209.250.236.197
addnode=140.82.56.214
addnode=207.246.81.73
addnode=178.128.87.245
addnode=212.35.183.73
addnode=185.57.82.27
addnode=178.128.217.156
EOF
}
function enable_firewall() {
echo -e "Installing and setting up firewall to allow ingress on port ${GREEN}$COIN_PORT${NC}"
ufw allow $COIN_PORT/tcp comment "$COIN_NAME MN port" >/dev/null
ufw allow ssh comment "SSH" >/dev/null 2>&1
ufw limit ssh/tcp >/dev/null 2>&1
ufw default allow outgoing >/dev/null 2>&1
echo "y" | ufw enable >/dev/null 2>&1
}
function get_ip() {
declare -a NODE_IPS
for ips in $(netstat -i | awk '!/Kernel|Iface|lo/ {print $1," "}')
do
NODE_IPS+=($(curl --interface $ips --connect-timeout 2 -s4 icanhazip.com))
done
if [ ${#NODE_IPS[@]} -gt 1 ]
then
echo -e "${GREEN}More than one IP. Please type 0 to use the first IP, 1 for the second and so on...${NC}"
INDEX=0
for ip in "${NODE_IPS[@]}"
do
echo ${INDEX} $ip
let INDEX=${INDEX}+1
done
read -e choose_ip
NODEIP=${NODE_IPS[$choose_ip]}
else
NODEIP=${NODE_IPS[0]}
fi
}
function compile_error() {
if [ "$?" -gt "0" ];
then
echo -e "${RED}Failed to compile $COIN_NAME. Please investigate.${NC}"
exit 1
fi
}
function checks() {
if [[ $(lsb_release -d) != *16.04* ]]; then
echo -e "${RED}You are not running Ubuntu 16.04. Installation is cancelled.${NC}"
exit 1
fi
if [[ $EUID -ne 0 ]]; then
echo -e "${RED}$0 must be run as root.${NC}"
exit 1
fi
if [ -n "$(pidof $COIN_DAEMON)" ] || [ -e "$COIN_DAEMOM" ] ; then
echo -e "${RED}$COIN_NAME is already installed.${NC}"
exit 1
fi
}
function prepare_system() {
echo -e "Preparing the VPS to setup. ${CYAN}$COIN_NAME${NC} ${CYAN}Masternode${NC}"
apt-get update >/dev/null 2>&1
DEBIAN_FRONTEND=noninteractive apt-get update > /dev/null 2>&1
DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" -y -qq upgrade >/dev/null 2>&1
apt install -y software-properties-common >/dev/null 2>&1
echo -e "${PURPLE}Adding bitcoin PPA repository"
apt-add-repository -y ppa:bitcoin/bitcoin >/dev/null 2>&1
echo -e "Installing required packages, it may take some time to finish.${NC}"
apt-get update >/dev/null 2>&1
apt-get install libzmq3-dev -y >/dev/null 2>&1
apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" make software-properties-common \
build-essential libtool autoconf libssl-dev libboost-dev libboost-chrono-dev libboost-filesystem-dev libboost-program-options-dev \
libboost-system-dev libboost-test-dev libboost-thread-dev sudo automake git wget curl libdb4.8-dev bsdmainutils libdb4.8++-dev \
libminiupnpc-dev libgmp3-dev ufw pkg-config libevent-dev libdb5.3++ unzip libzmq5 >/dev/null 2>&1
if [ "$?" -gt "0" ];
then
echo -e "${RED}Not all required packages were installed properly. Try to install them manually by running the following commands:${NC}\n"
echo "apt-get update"
echo "apt -y install software-properties-common"
echo "apt-add-repository -y ppa:bitcoin/bitcoin"
echo "apt-get update"
echo "apt install -y make build-essential libtool software-properties-common autoconf libssl-dev libboost-dev libboost-chrono-dev libboost-filesystem-dev \
libboost-program-options-dev libboost-system-dev libboost-test-dev libboost-thread-dev sudo automake git curl libdb4.8-dev \
bsdmainutils libdb4.8++-dev libminiupnpc-dev libgmp3-dev ufw pkg-config libevent-dev libdb5.3++ unzip libzmq5"
exit 1
fi
clear
}
function important_information() {
echo
echo -e "${BLUE}================================================================================================================================${NC}"
echo -e "${YELLOW}$COIN_NAME Version 4.5.1 has been Installed.{NC}"
echo -e "${YELLOW}$COIN_NAME Web https://www.dixicoin.net/${NC}"
echo -e "${YELLOW}$COIN_NAME HUB https://hub.dixicoin.net/games/${NC}"
echo -e "${YELLOW}$COIN_NAME Explorer http://explorer.dixicoin.net/${NC}"
echo -e "${BLUE}================================================================================================================================${NC}"
echo -e "${GREEN}$COIN_NAME Masternode is up and running listening on port${NC}${PURPLE}$COIN_PORT${NC}"
echo -e "${GREEN}Configuration file is:${NC}${RED}$CONFIGFOLDER/$CONFIG_FILE${NC}"
echo -e "${GREEN}VPS_IP: PORT${NC}${GREEN}$NODEIP: $COIN_PORT${NC}"
echo -e "${GREEN}MASTERNODE GENKEY is:${NC}${PURPLE}$COINKEY${NC}"
echo -e "${BLUE}================================================================================================================================"
echo -e "${CYAN} Follow $COIN_NAME on Twitter https://twitter.com/Dixicoin_DXC${NC}"
echo -e "${BLUE}================================================================================================================================${NC}"
echo -e "${CYAN}Ensure Node is fully SYNCED with BLOCKCHAIN prior to Activation.${NC}"
echo -e "${BLUE}================================================================================================================================${NC}"
echo -e "${GREEN}Usage Commands.${NC}"
echo -e "${GREEN}$COIN_CLI masternode status${NC}"
echo -e "${GREEN}$COIN_CLI getinfo${NC}"
echo -e "${GREEN}systemctl start $COIN_NAME.service${NC}"
echo -e "${GREEN}systemctl stop $COIN_NAME.service${NC}"
echo -e "${GREEN}systemctl status $COIN_NAME.service${NC}"
echo -e "${GREEN}systemctl enable $COIN_NAME.service${NC}"
echo -e "${GREEN}systemctl disable $COIN_NAME.service${NC}"
echo -e "${BLUE}================================================================================================================================${NC}"
echo -e "${GREEN}Tip - After the VPS is fully syncd it is best to stop and restart the daemon prior to activation. Allow checks to complete.${NC}"
echo -e "${BLUE}================================================================================================================================${NC}"
echo -e "${RED}Brought to you by LordSoylent. Donations Appreciated.${NC}"
echo -e "${BLUE}================================================================================================================================${NC}"
echo -e "${YELLOW}$COIN_NAME: DJzwhWGKYRZuXPsGPxkWHtLpHbmT34Yn9y${NC}"
echo -e "${BLUE}================================================================================================================================${NC}"
}
function setup_node() {
get_ip
create_config
create_key
update_config
enable_firewall
# install_sentinel
important_information
configure_systemd
}
##### Main #####
clear
purgeOldInstallation
checks
prepare_system
download_node
setup_node