summaryrefslogtreecommitdiffstats
path: root/extras/test/gluster_commands.sh
blob: f059bbeb24452a459a771168c716d6c205650a21 (plain)
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
#!/bin/sh

#   Copyright (c) 2006-2010 Gluster, Inc. <http://www.gluster.com>
#   This file is part of GlusterFS.

#   GlusterFS is free software; you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published
#   by the Free Software Foundation; either version 3 of the License,
#   or (at your option) any later version.

#   GlusterFS is distributed in the hope that it will be useful, but
#   WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
#   General Public License for more details.

#   You should have received a copy of the GNU General Public License
#   along with this program.  If not, see
#   <http://www.gnu.org/licenses/>.


# This script tests the basics gluster cli commands.

if [ ! -d "/exports" ]; then
    mkdir /exports;
    mkdir /exports/exp{1..10};
else
    mkdir /exports/exp{1..10};
fi

if [ ! -d "/mnt/client" ]; then
    mkdir /mnt/client -p;
fi


# create distribute volume and try start, mount, add-brick, replace-brick, remove-brick, stop, unmount, delete

gluster volume create vol `hostname`:/exports/exp1
gluster volume info

gluster volume start vol
gluster volume info
sleep 1
mount -t glusterfs `hostname`:vol /mnt/client
sleep 1 
df -h


gluster volume add-brick vol `hostname`:/exports/exp2
gluster volume info
sleep 1 
mount -t glusterfs `hostname`:vol /mnt/client
df -h
sleep 1

gluster volume replace-brick vol `hostname`:/exports/exp1 `hostname`:/exports/exp3 start
gluster volume replace-brick vol `hostname`:/exports/exp1 `hostname`:/exports/exp3 status
gluster volume replace-brick vol `hostname`:/exports/exp1 `hostname`:/exports/exp3 pause
gluster volume replace-brick vol `hostname`:/exports/exp1 `hostname`:/exports/exp3 abort
gluster volume replace-brick vol `hostname`:/exports/exp1 `hostname`:/exports/exp3 commit
gluster volume info
sleep 1
df -h
sleep 1

gluster volume remove-brick vol `hostname`:/exports/exp2
gluster volume info
sleep 1 
df -h
sleep 1

gluster volume stop vol
gluster volume info
sleep 1
df -h
umount /mnt/client
df -h

gluster volume delete vol
gluster volume info
sleep 1

# create replicate volume and try start, mount, add-brick, replace-brick, remove-brick, stop, unmount, delete

gluster volume create mirror replica 2 `hostname`:/exports/exp1 `hostname`:/exports/exp2
gluster volume info
sleep 1

gluster volume start mirror
gluster volume info
sleep 1 
mount -t glusterfs `hostname`:mirror /mnt/client
sleep 1
df -h
sleep1

gluster volume add-brick mirror replica 2 `hostname`:/exports/exp3 `hostname`:/exports/exp4
gluster volume info
sleep 1 
df -h
sleep 1

gluster volume replace-brick mirror `hostname`:/exports/exp1 `hostname`:/exports/exp5 start
gluster volume replace-brick mirror `hostname`:/exports/exp1 `hostname`:/exports/exp5 status
gluster volume replace-brick mirror `hostname`:/exports/exp1 `hostname`:/exports/exp5 pause
gluster volume replace-brick mirror `hostname`:/exports/exp1 `hostname`:/exports/exp5 abort
gluster volume replace-brick mirror `hostname`:/exports/exp1 `hostname`:/exports/exp5 commit
gluster volume info
sleep 1
df -h
sleep 1

gluster volume remove-brick mirror replica 2 `hostname`:/exports/exp3 `hostname`:/exports/exp4
gluster volume info
sleep 1 
df -h
sleep 1

gluster volume stop mirror
gluster volume info
sleep 1 
df -h
umount /mnt/client
df -h

gluster volume delete mirror
gluster volume info
sleep 1

# create stripe volume and try start, mount, add-brick, replace-brick, remove-brick, stop, unmount, delete

gluster volume create str stripe 2 `hostname`:/exports/exp1 `hostname`:/exports/exp2
gluster volume info
sleep 1

gluster volume start str
gluster volume info
sleep 1
mount -t glusterfs `hostname`:str /mnt/client
sleep 1 
df -h
sleep 1

gluster volume add-brick str stripe 2 `hostname`:/exports/exp3 `hostname`:/exports/exp4
gluster volume info
sleep 1 
df -h
sleep 1

gluster volume replace-brick str `hostname`:/exports/exp1 `hostname`:/exports/exp5 start
gluster volume replace-brick str `hostname`:/exports/exp1 `hostname`:/exports/exp5 status
gluster volume replace-brick str `hostname`:/exports/exp1 `hostname`:/exports/exp5 pause
gluster volume replace-brick str `hostname`:/exports/exp1 `hostname`:/exports/exp5 abort
gluster volume replace-brick str `hostname`:/exports/exp1 `hostname`:/exports/exp5 commit
gluster volume info
sleep 1
df -h

gluster volume remove-brick str stripe 2 `hostname`:/exports/exp3 `hostname`:/exports/exp4
gluster volume info
sleep 1
df -h
sleep 1

gluster volume stop str
gluster volume info
sleep 1
df -h
sleep 1 
umount /mnt/client
df -h

gluster volume delete str
gluster volume info