-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstall.sh
executable file
·392 lines (344 loc) · 10.4 KB
/
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
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
#!/bin/bash
set -o pipefail
# Use 'git branch -a' to get the full branch list
branch='master'
dpkg_installed='/tmp/installed_packages.list'
sheep_url='https://github.com/sheepdog/sheepdog.git'
qemu_url='git://github.com/qemu/qemu.git'
qemu_src_dir='/usr/src/qemu'
sheepdog_url='git://github.com/sheepdog/sheepdog.git'
sheepdog_src_dir='/usr/src/sheepdog'
ip_list=$(ip addr ls | grep global | awk '{print $2}' | awk -F '/' '{print $1}')
zookeeper_conf_file='/etc/zookeeper/conf/zoo.cfg'
zookeeper_id_file='/etc/zookeeper/conf/myid'
cores=$(grep -c processor /proc/cpuinfo)
script_dir=$(basename $0)
ulimit=1024000
[ -f /etc/debian_version ] && \
debian_version=$(cat /etc/debian_version | awk -F '.' '{print $1}')
zookeeper_conf='tickTime=2000
initLimit=10
syncLimit=5
dataDir=/var/lib/zookeeper
clientPort=2181
maxClientCnxns=0
'
notes[0]='REMEMBER: use the option --enable-kvm when running
qemu-system-x86_64 in your scripts.'
notes[1]='Check the other zookeeper nodes configuration.
You might have to add this node and reload the service'
notes[2]='A reboot is required. Would you like to reboot now? (You can run sheepdog_assistent.sh later).'
error[0]='It was not possible to install all the required packages.
Check your repositories (you need also "src" repository).'
error[1]="Valid options are only '1', '2' or '3'"
error[2]='It was not possible download the source code'
error[3]='There are no ip set. Configure your network first.'
error[4]='This is a wrong ip.'
question[0]='Would you like to run sheepdog-assistant?'
question[1]="It's recommended to update your system (aptitude safe-upgrade),
bofore installing sheepdog. Would you like to do it now?"
[ -z "$debian_version" ] && \
dpkg_required='automake pkg-config liburcu2 liburcu-dev zlib1g zlib1g-dev
libglib2.0-dev libpixman-1-dev groff build-essential git libzookeeper-mt-dev
apt-show-versions parted yasm libttol'
[ $debian_version == 7 ] && \
dpkg_required='automake pkg-config liburcu1 liburcu-dev zlib1g zlib1g-dev
libglib2.0-dev libpixman-1-dev groff build-essential git libzookeeper-mt-dev
apt-show-versions parted yasm libtool'
[ $debian_version == 8 ] && \
dpkg_required='automake pkg-config liburcu2 liburcu-dev zlib1g zlib1g-dev
libglib2.0-dev libpixman-1-dev groff build-essential git libzookeeper-mt-dev
apt-show-versions parted yasm libtool'
help () {
cat << EOF
Installing sheepdog, the node will be part of the cluster and it can
store data increasing the cluster size.
Installing qemu, the same node will be able to run virtual machines.
This means it will play both roles: front-end (Virtualization) and
back-end (storage).
Installing zookeeper (cluster manager), the node will take part of the
quorum. The role of the cluster manager is checking if nodes die or get
added and notify the others.
Remember that it's better to have and odd number of zookeeper daemons
in the cluster and you don't need many of them.
Three of them can monitor tens of nodes.
EOF
}
check_ip_syntax () {
[ -z "$1" ] && return 2
pattern='^[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}$'
echo $1 | grep $pattern > /dev/null || return 1
bytes=$(echo $1 | awk -F '.' '{print $1" "$2" "$3" "$4}')
for byte in $bytes
do
[ $byte -le 255 ] || return 1
done
return 0
}
confirm () {
while true
do
echo -e "$1"
read -p '(y/n): ' answer
[ "$answer" == 'y' -o "$answer" == 'Y' ] && return 0
[ "$answer" == 'n' -o "$answer" == 'N' ] && return 1
echo -e "\nType 'y' or 'n'\n"
done
}
fix_limit () {
file_max=$(grep fs.file-max /etc/sysctl.conf | grep -v '#' | awk '{print $3}')
if [ -z "$file_max" ]
then
echo 'fixing fs.file-max'
echo "fs.file-max = $ulimit" >> /etc/sysctl.conf
sysctl -p
elif [ $file_max -ne $ulimit ]
then
echo 'fixing fs.file-max'
sed -i -e "/^fs.file-max/d" /etc/sysctl.conf
echo "fs.file-max = $ulimit" >> /etc/sysctl.conf
sysctl -p
fi
reboot_needed=0
if [ $(ulimit -Hn) -ne $ulimit ]
then
echo "fixing number of opened file hard limit to $ulimit"
sed -i -e '/# End of file/d' /etc/security/limits.conf
sed -i -e '/root hard nofile/d' /etc/security/limits.conf
echo "root hard nofile $ulimit" >> /etc/security/limits.conf
echo '# End of file' >> /etc/security/limits.conf
reboot_needed=1
fi
if [ $(ulimit -Sn) -ne $ulimit ]
then
echo "fixing number of opened file soft limit to $ulimit"
sed -i -e '/# End of file/d' /etc/security/limits.conf
sed -i -e '/root soft nofile/d' /etc/security/limits.conf
echo "root soft nofile $ulimit" >> /etc/security/limits.conf
echo '# End of file' >> /etc/security/limits.conf
reboot_needed=1
fi
}
get_dpck_list () {
dpkg -l | grep ^ii | awk '{print $2}' > $dpkg_installed
}
check_installed_packages () {
for package in $@
do
grep $package $dpkg_installed > /dev/null || error "${error[0]}"
done
}
error () {
echo "Error: $1"
exit 2
}
install_sheepdog () {
if [ -d $sheepdog_src_dir ]
then
echo "Found sheepdog sources. Removing"
cd $sheepdog_src_dir
make uninstall > /dev/null
cd - > /dev/null
rm -rf $sheepdog_src_dir
fi
cd /usr/src
git clone $sheepdog_url || error "${error[2]}"
cd $sheepdog_src_dir
if [ "$branch" != 'master' ]
then
echo "Selecting branch $branch"
git checkout -b $branch origin/$branch || exit 2
fi
echo "Building..."
./autogen.sh > /dev/null && \
./configure --enable-zookeeper --disable-corosync --enable-diskvnodes > /dev/null && \
make -j $cores install > /dev/null
}
install_qemu () {
if [ -d $qemu_src_dir ]
then
echo "Found qemu sources. Removing"
cd $qemu_src_dir
make uninstall
cd - > /dev/null
rm -rf $qemu_src_dir
fi
cd /usr/src
git clone $qemu_url || error "${error[2]}"
cd $qemu_src_dir
echo "Building..."
./configure --enable-kvm --target-list="x86_64-softmmu" > /dev/null && \
make -j $cores install > /dev/null
}
install_zookeeper () {
aptitude -y install zookeeper zookeeperd
get_dpck_list
check_installed_packages zookeeper zookeeperd || return 2
}
configure_zookeeper () {
# FIX:
# In case of using a netmask different from /24 there may be id conflicts
ip_number=$(echo $ip_list | wc -w)
if [ $ip_number -gt 1 ]
then
echo 'More than one ip has beed deteceted:'
echo $ip_list
echo 'Type the ip that will be used by zookeeper.'
correct=1
while true
do
read -p 'ip: ' ip
for ip_detected in $ip_list
do
if [ "$ip_detected" == "$ip" ]
then
correct=0
break
fi
done
if [ $correct -eq 0 ]
then
break
else
echo "Wrong ip: re-type it"
fi
done
else
ip="$ip_list"
echo "Zookeeper will listen on ip $ip"
fi
myid=$(echo $ip | awk -F '.' '{print $4}')
echo 'Type the other zookeeper nodes ip, separated by a single space.'
echo 'If this is the only zookeeper node, just press enter.'
while true
do
read -p 'ip: ' zookeeper_ips
bad_ip=0
for zookeeper_ip in $zookeeper_ips
do
check_ip_syntax $zookeeper_ip
if [ $? -ne 0 ]
then
echo "$zookeeper_ip is not a valid ip"
bad_ip=1
break
fi
done
[ $bad_ip -ne 0 ] && continue
echo "Is this ip list correct?"
confirm "$zookeeper_ips"
[ $? -eq 0 ] && break
done
echo "$zookeeper_conf" > $zookeeper_conf_file
zookeeper_ips="$zookeeper_ips $ip"
for ip in $zookeeper_ips
do
id=$(echo $ip | awk -F '.' '{print $4}')
echo "server.$id=$ip:2888:3888" >> $zookeeper_conf_file
done
echo $myid > $zookeeper_id_file
service zookeeper restart
}
install_required () {
aptitude -y install $dpkg_required
get_dpck_list
check_installed_packages $dpkg_required || error "${error[0]}"
}
# Checking network settings
[ -z "$ip_list" ] && error "${error[3]}"
[ "$(whoami)" != 'root' ] && error "You need to be root"
# Update debian
echo 'Updating debian packages list'
aptitude update > /dev/null
confirm "${question[1]}"
[ $? -eq 0 ] && aptitude -y safe-upgrade
cat << EOF
If you already installed the standard qemu-kvm package it will be removed.
If /usr/src/qemu or /usr/src/sheepdog exist, they will be replaced after trying
to uninstalling them.
Do you whant do prceed?"
Chosse what you need to install
1) sheepdog
2) sheepdog + qemu
3) sheepdog + qemu + zookeeper
4) help
EOF
read -p 'number: ' choise
case $choise in
1)
echo 'Installing required packages'
install_required
echo "Installing sheepdog..."
install_sheepdog && sheep -v || error "Failed"
echo 'Done'
;;
2)
echo 'Installing required packages'
install_required; echo 'Done'
echo "Installing sheepdog..."
install_sheepdog && sheep -v || error "Failed"
echo "Installing qemu..."
install_qemu && qemu-system-x86_64 --version || error "Failed"
echo 'Done'
echo ${notes[0]}
;;
3)
echo 'Installing required packages'
install_required; echo 'Done'
echo "Installing sheepdog..."
install_sheepdog || error "Failed"
echo 'Done'
echo "Installing qemu..."
echo 'skipped'
install_qemu || error "Failed"
echo 'Done'
echo "Installing zookeeper"
install_zookeeper
configure_zookeeper
echo 'Done'
;;
4) help
exit
;;
*)
error "${error[1]}"
;;
esac
# Print summary
case $choise in
1)
echo -e "\nSummary:\n"
sheep -v
echo
;;
2)
echo -e "\nSummary:\n"
sheep -v
qemu-system-x86_64 --version
echo
echo ${notes[0]}
;;
3)
echo -e "\nSummary:\n"
sheep -v
qemu-system-x86_64 --version
apt-show-versions zookeeper
echo
echo ${notes[1]}
echo ${notes[0]}
;;
esac
# Check ulimit
fix_limit
# Reboot to change ulimit
if [ $reboot_needed -eq 1 ]
then
confirm "${notes[2]}"
if [ $? -eq 0 ]
then
reboot
exit
fi
fi
confirm "${question[0]}'"
[ $? -eq 0 ] && $script_dir/assistant.sh