-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAutoPXC.sh
More file actions
418 lines (348 loc) · 10.8 KB
/
AutoPXC.sh
File metadata and controls
418 lines (348 loc) · 10.8 KB
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
#!/bin/bash
#AUTOPXC by walt
#ifconfig | grep 'inet' | awk '{ print $2}'|grep -v '^$'|sed '/\.1$/d'| grep -v ':'
echo "Hello everyone,Please mail me for any question at walt008@aliyun.com"
nodeip=`ifconfig | grep 'inet' | cut -d: -f2 | awk '{ print $2}' | grep -v '^$' |sed '/\.1$/d'` #get localhost's ip.
echo "USER:$USER TIME:`date +%Y-%m-%d\ %H:%M:%S` HOST:$HOSTNAME IP:$nodeip"
echo "$nodeip $HOSTNAME" >> /etc/hosts #hosts
sed -i s/SELINUX=enforcing/SELINUX=disabled/g /etc/selinux/config
setenforce 0
#systemctl stop firewalld
#systemctl disable firewalld
#iptables -F
firewall-cmd --zone=public --add-port=80/tcp --permanent
firewall-cmd --zone=public --add-port=3306/tcp --permanent
firewall-cmd --zone=public --add-port=4567/tcp --permanent
firewall-cmd --zone=public --add-port=4568/tcp --permanent
firewall-cmd --zone=public --add-port=4444/tcp --permanent
firewall-cmd --reload
datadir="" #mysql datadir
ErrMSG="Directory is exsit."
DstMSG="Enter the path of mysqldata directory."
setenforce 0
service firewall stop &>/dev/null
service iptables stop &>/dev/null
iptables -F
function inputDstPath(){
while true
do
echo $DstMSG
read -p ":" datadir
if [ -d $datadir ];then
echo "$ErrMSG"
useradd -s /sbin/nologin mysql &>/dev/null
chown mysql.mysql -R $datadir
ls -l $datadir
read -p "do you want to delete all files of $datadir,y/n? :" yn
if [ "$yn" == "y" ];then
rm -rf "$datadir"
echo "del success!"
return
else
return
fi
return
else
mkdir -p $datadir
useradd -s /sbin/nologin mysql &>/dev/null
chown mysql.mysql -R $datadir
ls -l $datadir
return
fi
done
}
function makecnf(){
#read -p "Enter the IP of all the nodes,like 192.168.xxx.xxx,192.168.xxx.xxx,192.168.xxx.xxx:" allip
#read -p "input server-id like 1,2,3...,make sure every machine difference:" sid
sid=`date +%s%N | cut -c17-19`
cpun=`cat /proc/cpuinfo| grep "processor"| wc -l`
#cp /etc/my.cnf /etc/my.cnf.bak >/dev/null 2>&1
echo "[mysqld]
datadir=$datadir
socket = /tmp/mysql.sock
pid-file=$datadir/mysql.pid
character_set_server = utf8
max_connections = 3000
back_log= 3000
skip-name-resolve
sync_binlog=0
innodb_flush_log_at_trx_commit=1
server-id = $sid
default_storage_engine=Innodb
innodb_autoinc_lock_mode=2
binlog_format=row
wsrep_cluster_name=pxc_zs
wsrep_slave_threads=$cpun #开启的复制线程数,cpu核数*2
wsrep_cluster_address=gcomm://$nodeip,$node02,$node03
wsrep_node_address=$nodeip
wsrep_provider=/usr/local/mysql/lib/libgalera_smm.so
wsrep_sst_method=xtrabackup-v2
wsrep_sst_auth=sst:zs
[client]
socket = /tmp/mysql.sock" > /etc/my.cnf
}
function makecnf2(){
#read -p "Enter the IP of all the nodes,like 192.168.xxx.xxx,192.168.xxx.xxx,192.168.xxx.xxx:" allip
#read -p "input server-id like 1,2,3...,make sure every machine difference:" sid
sid=`date +%s%N | cut -c17-19`
cpun=`cat /proc/cpuinfo| grep "processor"| wc -l`
#cp /etc/my.cnf my.cnf.bak &>/dev/null
echo "
[mysqld]
datadir=$datadir
socket = /tmp/mysql.sock
pid-file=$datadir/mysql.pid
character_set_server = utf8
max_connections = 3000
back_log= 3000
skip-name-resolve
sync_binlog=0
innodb_flush_log_at_trx_commit=1
server-id = $sid
default_storage_engine=Innodb
innodb_autoinc_lock_mode=2
binlog_format=row
wsrep_cluster_name=pxc_zs
wsrep_slave_threads=$cpun #开启的复制线程数,cpu核数*2
wsrep_cluster_address=gcomm://$node01ip,$nodeip,$node03
wsrep_node_address=$nodeip
wsrep_provider=/usr/local/mysql/lib/libgalera_smm.so
wsrep_sst_method=xtrabackup-v2
wsrep_sst_auth=sst:zs
[client]
socket = /tmp/mysql.sock" > /etc/my.cnf
}
function makeall(){
read -p "Enter the IP of all the nodes,like 192.168.xxx.xxx,192.168.xxx.xxx,192.168.xxx.xxx :" allip
#read -p "input server-id like 1,2,3...,make sure every machine difference:" sid
sid=`date +%s%N | cut -c17-19`
cpun=`cat /proc/cpuinfo| grep "processor"| wc -l`
#cp /etc/my.cnf my.cnf.bak &>/dev/null
echo "
[mysqld]
datadir=$datadir
socket = /tmp/mysql.sock
pid-file=$datadir/mysql.pid
character_set_server = utf8
max_connections = 3000
back_log= 3000
skip-name-resolve
sync_binlog=0
innodb_flush_log_at_trx_commit=1
server-id = $sid
default_storage_engine=Innodb
innodb_autoinc_lock_mode=2
binlog_format=row
wsrep_cluster_name=pxc_zs
wsrep_slave_threads=$cpun #开启的复制线程数,cpu核数*2
wsrep_cluster_address=gcomm://$allip
wsrep_node_address=$nodeip
wsrep_provider=/usr/local/mysql/lib/libgalera_smm.so
wsrep_sst_method=xtrabackup-v2
wsrep_sst_auth=sst:zs
[client]
socket = /tmp/mysql.sock " > /etc/my.cnf
}
function makecnf3(){
#read -p "Enter the IP of all the nodes,like 192.168.xxx.xxx,192.168.xxx.xxx,192.168.xxx.xxx:" allip
#read -p "input server-id like 1,2,3...,make sure every machine difference:" sid
sid=`date +%s%N | cut -c17-19`
cpun=`cat /proc/cpuinfo| grep "processor"| wc -l`
#cp /etc/my.cnf my.cnf.bak &>/dev/null
echo "[mysqld]
datadir=$datadir
socket = /tmp/mysql.sock
pid-file=$datadir/mysql.pid
character_set_server = utf8
max_connections = 3000
back_log= 3000
skip-name-resolve
sync_binlog=0
innodb_flush_log_at_trx_commit=1
server-id = $sid
default_storage_engine=Innodb
innodb_autoinc_lock_mode=2
binlog_format=row
wsrep_cluster_name=pxc_zs
wsrep_slave_threads=$cpun #开启的复制线程数,cpu核数*2
wsrep_cluster_address=gcomm://$node01ip,$node02,$nodeip
wsrep_node_address=$nodeip
wsrep_provider=/usr/local/mysql/lib/libgalera_smm.so
wsrep_sst_method=xtrabackup-v2
wsrep_sst_auth=sst:zs
[client]
socket = /tmp/mysql.sock " > /etc/my.cnf
}
function download(){
#directory-prefix=/root/
echo "downloading..."
if [ -e /root/percona-xtrabackup-2.4.6-Linux-x86_64.tar.gz ];then
echo "percona-xtrabackup-2.4.6 already exist"
else
wget -c -p /root/ https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-2.4.6/binary/tarball/percona-xtrabackup-2.4.6-Linux-x86_64.tar.gz && echo "download xtrabackup complete"
fi
if [ -e /root/Percona-XtraDB-Cluster-5.6.26-rel74.0-25.12.1.Linux.x86_64.tar.gz ];then
echo "Percona-XtraDB-Cluster-5.6.26 already exist"
else
wget -c -p /root/ https://www.percona.com/downloads/Percona-XtraDB-Cluster-56/Percona-XtraDB-Cluster-5.6.26-25.12/binary/tarball/Percona-XtraDB-Cluster-5.6.26-rel74.0-25.12.1.Linux.x86_64.tar.gz && echo "download XtraDB complete"
fi
}
function copy(){
read -p "Enter the IP of node01 :" node01ip
if [ -e /root/percona-xtrabackup-2.4.6-Linux-x86_64.tar.gz ] && [ -e /root/Percona-XtraDB-Cluster-5.6.26-rel74.0-25.12.1.Linux.x86_64.tar.gz ];then
echo "xtrabackup and Percona-XtraDB-Cluster already exist"
else
scp root@$node01ip:/root/percona-xtrabackup-2.4.6-Linux-x86_64.tar.gz root@$node01ip:/root/Percona-XtraDB-Cluster-5.6.26-rel74.0-25.12.1.Linux.x86_64.tar.gz /root && echo "copy complete"
fi
}
function tarfile(){
echo "tar...files"
cd /usr/local && rm -f mysql
if [ -d percona-xtrabackup-2.4.6-Linux-x86_64 ] && [ -d Percona-XtraDB-Cluster-5.6.26-rel74.0-25.12.1.Linux.x86_64 ];then
echo "xtrabackup and PXC files already exist"
#rm -rf /root/percona-xtrabackup-2.4.6-Linux-x86_64
#rm -rf /root/Percona-XtraDB-Cluster-5.6.26-rel74.0-25.12.1.Linux.x86_64
else
tar xvf /root/percona-xtrabackup-2.4.6-Linux-x86_64.tar.gz
tar xvf /root/Percona-XtraDB-Cluster-5.6.26-rel74.0-25.12.1.Linux.x86_64.tar.gz
fi
ln -s Percona-XtraDB-Cluster-5.6.26-rel74.0-25.12.1.Linux.x86_64 mysql
chown mysql.mysql -R mysql
cp percona-xtrabackup-2.4.6-Linux-x86_64/bin/* mysql/bin/
yum remove mariadb-* mysql-* -y
yum install perl-IO-Socket-SSL.noarch perl-DBD-MySQL.x86_64 perl-Time-HiRes openssl openssl-devel socat -y
ln -s /usr/lib64/libreadline.so.6 /lib64/libreadline.so.5 &>/dev/null
ln -s /usr/lib64/libcrypto.so.10 /lib64/libcrypto.so.6 &>/dev/null
ln -s /usr/lib64/libssl.so.10 /lib64/libssl.so.6 &>/dev/null
}
function installdb(){
echo "install mysql..."
echo "export PATH=$PATH:/usr/local/mysql/bin" > /etc/profile.d/mysql.sh && source /etc/profile.d/mysql.sh
/usr/local/mysql/scripts/mysql_install_db --basedir=/usr/local/mysql --datadir=$datadir --defaults-file=/etc/my.cnf --user=mysql && cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql
}
function mysqlv(){
if [ -e /etc/init.d/mysql ];then
rm -rf /var/lock/subsys/mysql
/etc/init.d/mysql bootstrap-pxc
pxcstat=`/etc/init.d/mysql bootstrap-pxc`
if [[ $pxcstat == *SUCCESS* ]];then
echo -e "\033[32m MySQL Start SUCCESS! \033[1m"
mysql -uroot -p'' -e "
delete from mysql.user where user!='root' or host!='localhost';
grant all privileges on *.* to 'sst'@'%' identified by 'zs';
grant all privileges on *.* to 'sst'@'localhost' identified by 'zs';
flush privileges;
quit"
echo "oooook"
else
echo -e "\033[31m MySQL Start failed! \033[0m"
tail $datadir/$HOSTNAME.err
return
fi
else
echo "/etc/init.d/mysql is not exsit,quit."
return
fi
}
function mysql2(){
if [ -f /etc/init.d/mysql ];then
rm -rf /var/lock/subsys/mysql
/etc/init.d/mysql start
pxcstat=`/etc/init.d/mysql start`
if [[ $pxcstat == *SUCCESS* ]];then
echo -e "\033[32m MySQL Start SUCCESS! \033[1m"
mysql -v -e "
delete from mysql.user where user!='root' or host!='localhost';
grant all privileges on *.* to 'sst'@'%' identified by 'zs';
grant all privileges on *.* to 'sst'@'localhost' identified by 'zs';
flush privileges;
quit"
echo "oooook"
else
echo -e "\033[31m MySQL Start failed! \033[0m"
tail $datadir/$HOSTNAME.err
return
fi
else
echo "/etc/init.d/mysql is not exsit,quit."
return
fi
}
while true
do
echo "*************************************************************"
cat << EOF
1.node01
2.node02
3.node03 or more
4.quit
*iuput the NO. of machine*
When finish all machines,login mysql of node01,
Use "show status like 'wsrep%';" check Cluster state,
If state is ok, use "mysql_secure_installation" secure the Cluster.
EOF
echo "*************************************************************"
read -p ":" op
case $op in
1)
echo "master-node install"
read -p "enter the IP of node02 :" node02
read -p "enter the hostname of node02 :" hostname02
echo "$node02 $hostname02" >> /etc/hosts
read -p "enter the IP of node03 :" node03
read -p "enter the hostname of node03 :" hostname03
echo "$node03 $hostname03" >> /etc/hosts
inputDstPath
download
tarfile
installdb
makecnf
mysqlv
return
;;
2)
echo "slave-node02 install"
inputDstPath
copy
read -p "enter the hostname of node01 :" hostname01
echo "$node01ip $hostname01" >> /etc/hosts
read -p "enter the IP of node03 :" node03
read -p "enter the hostname of node03 :" hostname03
echo "$node03 $hostname03" >> /etc/hosts
tarfile
installdb
makecnf2
mysql2
return
;;
3)
echo "slave-node03 install"
inputDstPath
copy
read -p "enter the hostname of node01 :" hostname01
echo "$node01ip $hostname01" >> /etc/hosts
read -p "enter the hostname of node02 :" hostname02
read -p "enter the IP of node02 :" node02
echo "$node02 $hostname02" >> /etc/hosts
tarfile
installdb
mysql2
makecnf3
return
;;
4|quit)
echo "Exit..."
return
;;
*)
echo "slave-node install"
inputDstPath
copy
tarfile
installdb
makeall
mysql2
return
;;
esac
done