forked from oneinstack/oneinstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
backup_setup.sh
executable file
·549 lines (530 loc) · 24.8 KB
/
backup_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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
#!/bin/bash
# Author: yeho <lj2007331 AT gmail.com>
# BLOG: https://linuxeye.com
#
# Notes: OneinStack for CentOS/RedHat 6+ Debian 8+ and Ubuntu 14+
#
# Project home page:
# https://oneinstack.com
# https://github.com/oneinstack/oneinstack
export PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin
clear
printf "
#######################################################################
# OneinStack for CentOS/RedHat 6+ Debian 8+ and Ubuntu 14+ #
# Setup the backup parameters #
# For more information please visit https://oneinstack.com #
#######################################################################
"
# Check if user is root
[ $(id -u) != "0" ] && { echo "${CFAILURE}Error: You must be root to run this script${CEND}"; exit 1; }
oneinstack_dir=$(dirname "`readlink -f $0`")
pushd ${oneinstack_dir} > /dev/null
. ./options.conf
. ./versions.txt
. ./include/color.sh
. ./include/check_os.sh
. ./include/check_dir.sh
. ./include/download.sh
. ./include/python.sh
while :; do echo
echo 'Please select your backup destination:'
echo -e "\t${CMSG}1${CEND}. Localhost"
echo -e "\t${CMSG}2${CEND}. Remote host"
echo -e "\t${CMSG}3${CEND}. Aliyun OSS"
echo -e "\t${CMSG}4${CEND}. Qcloud COS"
echo -e "\t${CMSG}5${CEND}. UPYUN"
echo -e "\t${CMSG}6${CEND}. QINIU"
echo -e "\t${CMSG}7${CEND}. Amazon S3"
echo -e "\t${CMSG}8${CEND}. Google Drive"
echo -e "\t${CMSG}9${CEND}. Dropbox"
read -e -p "Please input numbers:(Default 1 press Enter) " desc_bk
desc_bk=${desc_bk:-'1'}
array_desc=(${desc_bk})
array_all=(1 2 3 4 5 6 7 8 9)
for v in ${array_desc[@]}
do
[ -z "`echo ${array_all[@]} | grep -w ${v}`" ] && desc_flag=1
done
if [ "${desc_flag}" == '1' ]; then
unset desc_flag
echo; echo "${CWARNING}input error! Please only input number 1 3 4 and so on${CEND}"; echo
continue
else
sed -i 's@^backup_destination=.*@backup_destination=@' ./options.conf
break
fi
done
[ -n "`echo ${desc_bk} | grep -w 1`" ] && sed -i 's@^backup_destination=.*@backup_destination=local@' ./options.conf
[ -n "`echo ${desc_bk} | grep -w 2`" ] && sed -i 's@^backup_destination=.*@&,remote@' ./options.conf
[ -n "`echo ${desc_bk} | grep -w 3`" ] && sed -i 's@^backup_destination=.*@&,oss@' ./options.conf
[ -n "`echo ${desc_bk} | grep -w 4`" ] && sed -i 's@^backup_destination=.*@&,cos@' ./options.conf
[ -n "`echo ${desc_bk} | grep -w 5`" ] && sed -i 's@^backup_destination=.*@&,upyun@' ./options.conf
[ -n "`echo ${desc_bk} | grep -w 6`" ] && sed -i 's@^backup_destination=.*@&,qiniu@' ./options.conf
[ -n "`echo ${desc_bk} | grep -w 7`" ] && sed -i 's@^backup_destination=.*@&,s3@' ./options.conf
[ -n "`echo ${desc_bk} | grep -w 8`" ] && sed -i 's@^backup_destination=.*@&,gdrive@' ./options.conf
[ -n "`echo ${desc_bk} | grep -w 9`" ] && sed -i 's@^backup_destination=.*@&,dropbox@' ./options.conf
sed -i 's@^backup_destination=,@backup_destination=@' ./options.conf
while :; do echo
echo 'Please select your backup content:'
echo -e "\t${CMSG}1${CEND}. Only Database"
echo -e "\t${CMSG}2${CEND}. Only Website"
echo -e "\t${CMSG}3${CEND}. Database and Website"
read -e -p "Please input a number:(Default 1 press Enter) " content_bk
content_bk=${content_bk:-1}
if [[ ! ${content_bk} =~ ^[1-3]$ ]]; then
echo "${CWARNING}input error! Please only input number 1~3${CEND}"
else
break
fi
done
[ "${content_bk}" == '1' ] && sed -i 's@^backup_content=.*@backup_content=db@' ./options.conf
[ "${content_bk}" == '2' ] && sed -i 's@^backup_content=.*@backup_content=web@' ./options.conf
[ "${content_bk}" == '3' ] && sed -i 's@^backup_content=.*@backup_content=db,web@' ./options.conf
if [ -n "`echo ${desc_bk} | grep -Ew '1|2'`" ]; then
while :; do echo
echo "Please enter the directory for save the backup file: "
read -e -p "(Default directory: ${backup_dir}): " new_backup_dir
new_backup_dir=${new_backup_dir:-${backup_dir}}
if [ -z "`echo ${new_backup_dir}| grep '^/'`" ]; then
echo "${CWARNING}input error! ${CEND}"
else
break
fi
done
sed -i "s@^backup_dir=.*@backup_dir=${new_backup_dir}@" ./options.conf
fi
while :; do echo
echo "Please enter a valid backup number of days: "
read -e -p "(Default days: 5): " expired_days
expired_days=${expired_days:-5}
[ -n "`echo ${expired_days} | sed -n "/^[0-9]\+$/p"`" ] && break || echo "${CWARNING}input error! Please only enter numbers! ${CEND}"
done
sed -i "s@^expired_days=.*@expired_days=${expired_days}@" ./options.conf
if [ "${content_bk}" != '2' ]; then
databases=`${db_install_dir}/bin/mysql -uroot -p$dbrootpwd -e "show databases\G" | grep Database | awk '{print $2}' | grep -Evw "(performance_schema|information_schema|mysql|sys)"`
while :; do echo
echo "Please enter one or more name for database, separate multiple database names with commas: "
read -e -p "(Default database: `echo $databases | tr ' ' ','`) " db_name
db_name=`echo ${db_name} | tr -d ' '`
[ -z "${db_name}" ] && db_name="`echo $databases | tr ' ' ','`"
D_tmp=0
for D in `echo ${db_name} | tr ',' ' '`
do
[ -z "`echo $databases | grep -w $D`" ] && { echo "${CWARNING}$D was not exist! ${CEND}" ; D_tmp=1; }
done
[ "$D_tmp" != '1' ] && break
done
sed -i "s@^db_name=.*@db_name=${db_name}@" ./options.conf
fi
if [ "${content_bk}" != '1' ]; then
websites=`ls ${wwwroot_dir}`
while :; do echo
echo "Please enter one or more name for website, separate multiple website names with commas: "
read -e -p "(Default website: `echo $websites | tr ' ' ','`) " website_name
website_name=`echo ${website_name} | tr -d ' '`
[ -z "${website_name}" ] && website_name="`echo $websites | tr ' ' ','`"
W_tmp=0
for W in `echo ${website_name} | tr ',' ' '`
do
[ ! -e "${wwwroot_dir}/$W" ] && { echo "${CWARNING}${wwwroot_dir}/$W not exist! ${CEND}" ; W_tmp=1; }
done
[ "$W_tmp" != '1' ] && break
done
sed -i "s@^website_name=.*@website_name=${website_name}@" ./options.conf
fi
echo
echo "You have to backup the content:"
[ "${content_bk}" != '2' ] && echo "Database: ${CMSG}${db_name}${CEND}"
[ "${content_bk}" != '1' ] && echo "Website: ${CMSG}${website_name}${CEND}"
if [ -n "`echo ${desc_bk} | grep -w 2`" ]; then
> tools/iplist.txt
while :; do echo
read -e -p "Please enter the remote host address: " remote_address
[ -z "${remote_address}" -o "${remote_address}" == '127.0.0.1' ] && continue
echo
read -e -p "Please enter the remote host port(Default: 22) : " remote_port
remote_port=${remote_port:-22}
echo
read -e -p "Please enter the remote host user(Default: root) : " remote_user
remote_user=${remote_user:-root}
echo
read -e -p "Please enter the remote host password: " remote_password
IPcode=$(echo "ibase=16;$(echo "${remote_address}" | xxd -ps -u)"|bc|tr -d '\\'|tr -d '\n')
Portcode=$(echo "ibase=16;$(echo "${remote_port}" | xxd -ps -u)"|bc|tr -d '\\'|tr -d '\n')
PWcode=$(echo "ibase=16;$(echo "$remote_password" | xxd -ps -u)"|bc|tr -d '\\'|tr -d '\n')
[ -e "~/.ssh/known_hosts" ] && grep ${remote_address} ~/.ssh/known_hosts | sed -i "/${remote_address}/d" ~/.ssh/known_hosts
./tools/mssh.exp ${IPcode}P ${remote_user} ${PWcode}P ${Portcode}P true 10
if [ $? -eq 0 ]; then
[ -z "`grep ${remote_address} tools/iplist.txt`" ] && echo "${remote_address} ${remote_port} ${remote_user} $remote_password" >> tools/iplist.txt || echo "${CWARNING}${remote_address} has been added! ${CEND}"
while :; do
read -e -p "Do you want to add more host ? [y/n]: " morehost_flag
if [[ ! ${morehost_flag} =~ ^[y,n]$ ]]; then
echo "${CWARNING}input error! Please only input 'y' or 'n'${CEND}"
else
break
fi
done
[ "${morehost_flag}" == 'n' ] && break
fi
done
fi
if [ -n "`echo ${desc_bk} | grep -w 3`" ]; then
if [ ! -e "/usr/local/bin/ossutil" ]; then
wget -qc http://gosspublic.alicdn.com/ossutil/1.6.10/ossutil${OS_BIT} -O /usr/local/bin/ossutil
chmod +x /usr/local/bin/ossutil
fi
while :; do echo
echo 'Please select your backup aliyun datacenter:'
echo -e "\t ${CMSG}1${CEND}. cn-hangzhou-华东 1 (杭州) ${CMSG}2${CEND}. cn-shanghai-华东 2 (上海)"
echo -e "\t ${CMSG}3${CEND}. cn-qingdao-华北 1 (青岛) ${CMSG}4${CEND}. cn-beijing-华北 2 (北京)"
echo -e "\t ${CMSG}5${CEND}. cn-zhangjiakou-华北 3 (张家口) ${CMSG}6${CEND}. cn-huhehaote-华北 5(呼和浩特)"
echo -e "\t ${CMSG}7${CEND}. cn-shenzhen-华南 1 (深圳) ${CMSG}8${CEND}. cn-chengdu-西南 1(成都)"
echo -e "\t ${CMSG}9${CEND}. cn-hongkong-香港 ${CMSG}10${CEND}. us-west-美西 1 (硅谷)"
echo -e "\t${CMSG}11${CEND}. us-east-美东 1 (弗吉尼亚) ${CMSG}12${CEND}. ap-southeast-亚太东南 1 (新加坡)"
echo -e "\t${CMSG}13${CEND}. ap-southeast-亚太东南 2 (悉尼) ${CMSG}14${CEND}. ap-southeast-亚太东南 3 (吉隆坡)"
echo -e "\t${CMSG}15${CEND}. ap-southeast-亚太东南 5 (雅加达) ${CMSG}16${CEND}. ap-northeast-亚太东北 1 (日本)"
echo -e "\t${CMSG}17${CEND}. ap-south-亚太南部 1 (孟买) ${CMSG}18${CEND}. eu-central-欧洲中部 1 (法兰克福)"
echo -e "\t${CMSG}19${CEND}. eu-west-英国(伦敦) ${CMSG}20${CEND}. me-east-中东东部 1 (迪拜)"
read -e -p "Please input a number:(Default 1 press Enter) " Location
Location=${Location:-1}
if [[ "${Location}" =~ ^[1-9]$|^1[0-9]$|^20$ ]]; then
break
else
echo "${CWARNING}input error! Please only input number 1~20${CEND}"
fi
done
[ "${Location}" == '1' ] && Host=oss-cn-hangzhou-internal.aliyuncs.com
[ "${Location}" == '2' ] && Host=oss-cn-shanghai-internal.aliyuncs.com
[ "${Location}" == '3' ] && Host=oss-cn-qingdao-internal.aliyuncs.com
[ "${Location}" == '4' ] && Host=oss-cn-beijing-internal.aliyuncs.com
[ "${Location}" == '5' ] && Host=oss-cn-zhangjiakou-internal.aliyuncs.com
[ "${Location}" == '6' ] && Host=oss-cn-huhehaote-internal.aliyuncs.com
[ "${Location}" == '7' ] && Host=oss-cn-shenzhen-internal.aliyuncs.com
[ "${Location}" == '8' ] && Host=oss-cn-chengdu-internal.aliyuncs.com
[ "${Location}" == '9' ] && Host=oss-cn-hongkong-internal.aliyuncs.com
[ "${Location}" == '10' ] && Host=oss-us-west-1-internal.aliyuncs.com
[ "${Location}" == '11' ] && Host=oss-us-east-1-internal.aliyuncs.com
[ "${Location}" == '12' ] && Host=oss-ap-southeast-1-internal.aliyuncs.com
[ "${Location}" == '13' ] && Host=oss-ap-southeast-2-internal.aliyuncs.com
[ "${Location}" == '14' ] && Host=oss-ap-southeast-3-internal.aliyuncs.com
[ "${Location}" == '15' ] && Host=oss-ap-southeast-5-internal.aliyuncs.com
[ "${Location}" == '16' ] && Host=oss-ap-northeast-1-internal.aliyuncs.com
[ "${Location}" == '17' ] && Host=oss-ap-south-1-internal.aliyuncs.com
[ "${Location}" == '18' ] && Host=oss-eu-central-1-internal.aliyuncs.com
[ "${Location}" == '19' ] && Host=oss-eu-west-1-internal.aliyuncs.com
[ "${Location}" == '20' ] && Host=oss-me-east-1-internal.aliyuncs.com
[ "$(./include/check_port.py ${Host} 80)" == "False" ] && Host=`echo ${Host} | sed 's@-internal@@g'`
[ -e "/root/.ossutilconfig" ] && rm -f /root/.ossutilconfig
while :; do echo
read -e -p "Please enter the aliyun oss Access Key ID: " KeyID
[ -z "${KeyID}" ] && continue
echo
read -e -p "Please enter the aliyun oss Access Key Secret: " KeySecret
[ -z "${KeySecret}" ] && continue
/usr/local/bin/ossutil ls -e ${Host} -i ${KeyID} -k ${KeySecret} > /dev/null 2>&1
if [ $? -eq 0 ]; then
/usr/local/bin/ossutil config -e ${Host} -i ${KeyID} -k ${KeySecret} > /dev/null 2>&1
while :; do echo
read -e -p "Please enter the aliyun oss bucket: " OSS_BUCKET
/usr/local/bin/ossutil mb oss://${OSS_BUCKET} > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo "${CMSG}Bucket oss://${OSS_BUCKET}/ created${CEND}"
sed -i "s@^oss_bucket=.*@oss_bucket=${OSS_BUCKET}@" ./options.conf
break
else
echo "${CWARNING}[${OSS_BUCKET}] already exists, You need to use the OSS Console to create a bucket for storing.${CEND}"
fi
done
break
fi
done
fi
if [ -n "`echo ${desc_bk} | grep -w 4`" ]; then
Install_Python
[ ! -e "${python_install_dir}/bin/coscmd" ] && ${python_install_dir}/bin/pip install coscmd > /dev/null 2>&1
while :; do echo
echo 'Please select your backup qcloud datacenter:'
echo -e "\t ${CMSG} 1${CEND}. ap-beijing-1-北京一区(华北) ${CMSG}2${CEND}. ap-beijing-北京"
echo -e "\t ${CMSG} 3${CEND}. ap-shanghai-上海(华东) ${CMSG}4${CEND}. ap-guangzhou-广州(华南)"
echo -e "\t ${CMSG} 5${CEND}. ap-chengdu-成都(西南) ${CMSG}6${CEND}. ap-chongqing-重庆"
echo -e "\t ${CMSG} 7${CEND}. ap-shenzhen-fsi-深圳金融 ${CMSG}8${CEND}. ap-shanghai-fsi-上海金融"
echo -e "\t ${CMSG} 9${CEND}. ap-beijing-fsi-北京金融 ${CMSG}10${CEND}. ap-hongkong-香港"
echo -e "\t ${CMSG}11${CEND}. ap-singapore-新加坡 ${CMSG}12${CEND}. ap-mumbai-孟买"
echo -e "\t ${CMSG}13${CEND}. ap-seoul-首尔 ${CMSG}14${CEND}. ap-bangkok-曼谷"
echo -e "\t ${CMSG}15${CEND}. ap-tokyo-东京 ${CMSG}16${CEND}. na-siliconvalley-硅谷"
echo -e "\t ${CMSG}17${CEND}. na-ashburn-弗吉尼亚 ${CMSG}18${CEND}. na-toronto-多伦多"
echo -e "\t ${CMSG}19${CEND}. eu-frankfurt-法兰克福 ${CMSG}20${CEND}. eu-moscow-莫斯科"
read -e -p "Please input a number:(Default 1 press Enter) " Location
Location=${Location:-1}
if [[ "${Location}" =~ ^[1-9]$|^1[0-9]$|^20$ ]]; then
break
else
echo "${CWARNING}input error! Please only input number 1~17${CEND}"
fi
done
[ "${Location}" == '1' ] && REGION='ap-beijing-1'
[ "${Location}" == '2' ] && REGION='ap-beijing'
[ "${Location}" == '3' ] && REGION='ap-shanghai'
[ "${Location}" == '4' ] && REGION='ap-guangzhou'
[ "${Location}" == '5' ] && REGION='ap-chengdu'
[ "${Location}" == '6' ] && REGION='ap-chongqing'
[ "${Location}" == '7' ] && REGION='ap-shenzhen-fsi'
[ "${Location}" == '8' ] && REGION='ap-shanghai-fsi'
[ "${Location}" == '9' ] && REGION='ap-beijing-fsi'
[ "${Location}" == '10' ] && REGION='ap-hongkong'
[ "${Location}" == '11' ] && REGION='ap-singapore'
[ "${Location}" == '12' ] && REGION='ap-mumbai'
[ "${Location}" == '13' ] && REGION='ap-seoul'
[ "${Location}" == '14' ] && REGION='ap-bangkok'
[ "${Location}" == '15' ] && REGION='ap-tokyo'
[ "${Location}" == '16' ] && REGION='na-siliconvalley'
[ "${Location}" == '17' ] && REGION='na-ashburn'
[ "${Location}" == '18' ] && REGION='na-toronto'
[ "${Location}" == '19' ] && REGION='eu-frankfurt'
[ "${Location}" == '20' ] && REGION='eu-moscow'
while :; do echo
read -e -p "Please enter the Qcloud COS APPID: " APPID
[[ ! "${APPID}" =~ ^[0-9]+$ ]] && { echo "${CWARNING}input error, must be a number${CEND}"; continue; }
echo
read -e -p "Please enter the Qcloud COS SECRET_ID: " SECRET_ID
[ -z "${SECRET_ID}" ] && continue
echo
read -e -p "Please enter the Qcloud COS SECRET_KEY: " SECRET_KEY
[ -z "${SECRET_KEY}" ] && continue
echo
read -e -p "Please enter the Qcloud COS BUCKET: " COS_BUCKET
if [[ ${COS_BUCKET} =~ "-${APPID}"$ ]]; then
COS_BUCKET=${COS_BUCKET}
else
[ -z "${COS_BUCKET}" ] && continue
echo
COS_BUCKET=${COS_BUCKET}-${APPID}
fi
${python_install_dir}/bin/coscmd config -u ${APPID} -a ${SECRET_ID} -s ${SECRET_KEY} -r ${REGION} -b ${COS_BUCKET} > /dev/null 2>&1
${python_install_dir}/bin/coscmd list > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo "${CMSG}APPID/SECRET_ID/SECRET_KEY/REGION/BUCKET OK${CEND}"
echo
break
else
${python_install_dir}/bin/coscmd -b ${COS_BUCKET} createbucket > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo "${CMSG}Bucket ${COS_BUCKET} created${CEND}"
echo
break
else
echo "${CWARNING}input error! APPID/SECRET_ID/SECRET_KEY/REGION/BUCKET invalid${CEND}"
continue
fi
fi
done
fi
if [ -n "`echo ${desc_bk} | grep -w 5`" ]; then
if [ ! -e "/usr/local/bin/upx" ]; then
if [ "${OS_BIT}" == '64' ]; then
wget -qc http://collection.b0.upaiyun.com/softwares/upx/upx-linux-amd64-v0.2.4 -O /usr/local/bin/upx
elif [ "${OS_BIT}" == '32' ]; then
wget -qc http://collection.b0.upaiyun.com/softwares/upx/upx-linux-386-v0.2.4 -O /usr/local/bin/upx
fi
chmod +x /usr/local/bin/upx
fi
while :; do echo
read -e -p "Please enter the upyun ServiceName: " ServiceName
[ -z "${ServiceName}" ] && continue
echo
read -e -p "Please enter the upyun Operator: " Operator
[ -z "${Operator}" ] && continue
echo
read -e -p "Please enter the upyun Password: " Password
[ -z "${Password}" ] && continue
echo
/usr/local/bin/upx login ${ServiceName} ${Operator} ${Password} > /dev/null 2>&1
if [ $? = 0 ]; then
echo "${CMSG}ServiceName/Operator/Password OK${CEND}"
echo
break
else
echo "${CWARNING}input error! ServiceName/Operator/Password invalid${CEND}"
fi
done
fi
if [ -n "`echo ${desc_bk} | grep -w 6`" ]; then
if [ ! -e "/usr/local/bin/qrsctl" ]; then
if [ "${OS_BIT}" == '64' ]; then
wget -qc http://devtools.qiniu.com/linux/amd64/qrsctl -O /usr/local/bin/qrsctl
elif [ "${OS_BIT}" == '32' ]; then
wget -qc http://devtools.qiniu.com/linux/386/qrsctl -O /usr/local/bin/qrsctl
fi
chmod +x /usr/local/bin/qrsctl
fi
if [ ! -e "/usr/local/bin/qshell" ]; then
if [ "${OS_BIT}" == '64' ]; then
wget -qc http://devtools.qiniu.com/qshell-linux-x64-v2.4.0.zip -O /tmp/qshell-linux-x64-v2.4.0.zip
unzip -q /tmp/qshell-linux-x64-v2.4.0.zip -d /tmp/
/bin/cp /tmp/qshell-linux-x64-v2.4.0 /usr/local/bin/qshell
elif [ "${OS_BIT}" == '32' ]; then
wget -qc http://devtools.qiniu.com/qshell-linux-x86-v2.4.0.zip -O /tmp/qshell-linux-x86-v2.4.0.zip
unzip -q /tmp/qshell-linux-x86-v2.4.0.zip -d /tmp/
/bin/cp /tmp/qshell-linux-x86-v2.4.0 /usr/local/bin/qshell
fi
chmod +x /usr/local/bin/qshell
rm -f /tmp/qshell*
fi
while :; do echo
echo 'Please select your backup qiniu datacenter:'
echo -e "\t ${CMSG} 1${CEND}. 华东 ${CMSG}2${CEND}. 华北"
echo -e "\t ${CMSG} 3${CEND}. 华南 ${CMSG}4${CEND}. 北美"
echo -e "\t ${CMSG} 5${CEND}. 东南亚"
read -e -p "Please input a number:(Default 1 press Enter) " Location
Location=${Location:-1}
if [[ "${Location}" =~ ^[1-5]$ ]]; then
break
else
echo "${CWARNING}input error! Please only input number 1~5${CEND}"
fi
done
[ "${Location}" == '1' ] && zone='z0'
[ "${Location}" == '2' ] && zone='z1'
[ "${Location}" == '3' ] && zone='z2'
[ "${Location}" == '4' ] && zone='na0'
[ "${Location}" == '5' ] && zone='as0'
while :; do echo
read -e -p "Please enter the qiniu AccessKey: " AccessKey
[ -z "${AccessKey}" ] && continue
echo
read -e -p "Please enter the qiniu SecretKey: " SecretKey
[ -z "${SecretKey}" ] && continue
echo
read -e -p "Please enter the qiniu bucket: " QINIU_BUCKET
[ -z "${QINIU_BUCKET}" ] && continue
echo
/usr/local/bin/qshell account ${AccessKey} ${SecretKey} backup
/usr/local/bin/qrsctl login ${AccessKey} ${SecretKey}
if /usr/local/bin/qrsctl bucketinfo ${QINIU_BUCKET} > /dev/null 2>&1; then
sed -i "s@^qiniu_bucket=.*@qiniu_bucket=${QINIU_BUCKET}@" ./options.conf
echo "${CMSG}AccessKey/SecretKey OK${CEND}"
echo
break
elif /usr/local/bin/qrsctl mkbucket ${QINIU_BUCKET} ${zone} > /dev/null 2>&1; then
/usr/local/bin/qrsctl private ${QINIU_BUCKET} 1
echo "${CMSG}Bucket ${QINIU_BUCKET} created${CEND}"
sed -i "s@^qiniu_bucket=.*@qiniu_bucket=${QINIU_BUCKET}@" ./options.conf
echo "${CMSG}AccessKey/SecretKey OK${CEND}"
echo
break
else
echo "${CWARNING}input error! AccessKey/SecretKey invalid${CEND}"
fi
done
fi
if [ -n "`echo ${desc_bk} | grep -w 7`" ]; then
Install_Python
[ ! -e "${python_install_dir}/bin/s3cmd" ] && ${python_install_dir}/bin/pip install s3cmd > /dev/null 2>&1
while :; do echo
echo 'Please select your backup amazon datacenter:'
echo -e "\t ${CMSG} 1${CEND}. us-east-2 ${CMSG} 2${CEND}. us-east-1"
echo -e "\t ${CMSG} 3${CEND}. us-west-1 ${CMSG} 4${CEND}. us-west-2"
echo -e "\t ${CMSG} 5${CEND}. ap-south-1 ${CMSG} 6${CEND}. ap-northeast-3"
echo -e "\t ${CMSG} 7${CEND}. ap-northeast-2 ${CMSG} 8${CEND}. ap-southeast-1"
echo -e "\t ${CMSG} 9${CEND}. ap-southeast-2 ${CMSG}10${CEND}. ap-northeast-1"
echo -e "\t ${CMSG}11${CEND}. ca-central-1 ${CMSG}12${CEND}. cn-north-1"
echo -e "\t ${CMSG}13${CEND}. cn-northwest-1 ${CMSG}14${CEND}. eu-central-1"
echo -e "\t ${CMSG}15${CEND}. eu-west-1 ${CMSG}16${CEND}. eu-west-2"
echo -e "\t ${CMSG}17${CEND}. eu-west-3 ${CMSG}18${CEND}. eu-north-1"
echo -e "\t ${CMSG}19${CEND}. sa-east-1 ${CMSG}20${CEND}. us-gov-east-1"
echo -e "\t ${CMSG}21${CEND}. us-gov-west-1"
read -e -p "Please input a number:(Default 1 press Enter) " Location
Location=${Location:-1}
if [[ "${Location}" =~ ^[1-9]$|^1[0-9]$|^2[0-1]$ ]]; then
break
else
echo "${CWARNING}input error! Please only input number 1~21${CEND}"
fi
done
[ "${Location}" == '1' ] && REGION='us-east-2'
[ "${Location}" == '2' ] && REGION='us-east-1'
[ "${Location}" == '3' ] && REGION='us-west-1'
[ "${Location}" == '4' ] && REGION='us-west-2'
[ "${Location}" == '5' ] && REGION='ap-south-1'
[ "${Location}" == '6' ] && REGION='ap-northeast-3'
[ "${Location}" == '7' ] && REGION='ap-northeast-2'
[ "${Location}" == '8' ] && REGION='ap-southeast-1'
[ "${Location}" == '9' ] && REGION='ap-southeast-2'
[ "${Location}" == '10' ] && REGION='ap-northeast-1'
[ "${Location}" == '11' ] && REGION='ca-central-1'
[ "${Location}" == '12' ] && REGION='cn-north-1'
[ "${Location}" == '13' ] && REGION='cn-northwest-1'
[ "${Location}" == '14' ] && REGION='eu-central-1'
[ "${Location}" == '15' ] && REGION='eu-west-1'
[ "${Location}" == '16' ] && REGION='eu-west-2'
[ "${Location}" == '17' ] && REGION='eu-west-3'
[ "${Location}" == '18' ] && REGION='eu-north-1'
[ "${Location}" == '19' ] && REGION='sa-east-1'
[ "${Location}" == '20' ] && REGION='us-gov-east-1'
[ "${Location}" == '21' ] && REGION='us-gov-west-1'
while :; do echo
read -e -p "Please enter the AWS Access Key: " ACCESS_KEY
[ -z "${ACCESS_KEY}" ] && continue
echo
read -e -p "Please enter the AWS Access Key: " SECRET_KEY
[ -z "${SECRET_KEY}" ] && continue
${python_install_dir}/bin/s3cmd --access_key=${ACCESS_KEY} --secret_key=${SECRET_KEY} --region=${REGION} la > /dev/null 2>&1
if [ $? -eq 0 ]; then
${python_install_dir}/bin/s3cmd --configure --access_key=${ACCESS_KEY} --secret_key=${SECRET_KEY} --region=${REGION} --dump-config > ~/.s3cfg
echo "${CMSG}ACCESS_KEY/SECRET_KEY OK${CEND}"
while :; do echo
read -e -p "Please enter the Amazon S3 bucket: " S3_BUCKET
[ -z "${S3_BUCKET}" ] && continue
${python_install_dir}/bin/s3cmd ls s3://${S3_BUCKET} > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo "${CMSG}Bucket s3://${S3_BUCKET}/ existed${CEND}"
sed -i "s@^s3_bucket=.*@s3_bucket=${S3_BUCKET}@" ./options.conf
break
else
${python_install_dir}/bin/s3cmd mb s3://${S3_BUCKET} > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo "${CMSG}Bucket s3://${S3_BUCKET}/ created${CEND}"
sed -i "s@^s3_bucket=.*@s3_bucket=${S3_BUCKET}@" ./options.conf
break
else
echo "${CWARNING}The requested bucket name is not available. The bucket namespace is shared by all users of the system. Please select a different name and try again.${CEND}"
continue
fi
fi
done
break
else
echo "${CWARNING}input error! ACCESS_KEY/SECRET_KEY invalid${CEND}"
continue
fi
done
fi
if [ -n "`echo ${desc_bk} | grep -w 8`" ]; then
if [ ! -e "/usr/local/bin/gdrive" ]; then
if [ "${OS_BIT}" == '64' ]; then
wget -qc http://mirrors.linuxeye.com/oneinstack/src/gdrive-linux-x64 -O /usr/local/bin/gdrive
elif [ "${OS_BIT}" == '32' ]; then
wget -qc http://mirrors.linuxeye.com/oneinstack/src/gdrive-linux-386 -O /usr/local/bin/gdrive
fi
chmod +x /usr/local/bin/gdrive
fi
while :; do echo
if gdrive about; then
break
fi
done
fi
if [ -n "`echo ${desc_bk} | grep -w 9`" ]; then
if [ ! -e "/usr/local/bin/dbxcli" ]; then
if [ "${OS_BIT}" == '64' ]; then
wget -qc http://mirrors.linuxeye.com/oneinstack/src/dbxcli-linux-amd64 -O /usr/local/bin/dbxcli
fi
chmod +x /usr/local/bin/dbxcli
fi
while :; do echo
if dbxcli account; then
break
fi
done
fi