summaryrefslogtreecommitdiffstats
path: root/266/regr/spec_files/server1.vol
blob: 6f68154ea7d3826d3da3b0e88c3d05a14e15f838 (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
# **** server1 spec file ****

### Export volume "brick" with the contents of "/home/export" directory.
volume posix1
  type storage/posix                    # POSIX FS translator
  option directory /root/regression/266/regr/export/export1
end-volume

volume error1
  type debug/error-gen
  option error-no ENOSPC
  subvolumes posix1
end-volume

### Add POSIX record locking support to the storage brick
volume brick1
  type features/posix-locks
  option mandatory on          # enables mandatory locking on all files
  subvolumes error1
end-volume

### Add network serving capability to above brick.
volume server
  type protocol/server
  option transport-type tcp     # For TCP/IP transport
  option transport.socket.listen-port 7001              # Default is 6996
  option transport.socket.nodelay on
# option client-volume-filename /etc/glusterfs/glusterfs-client.vol
  subvolumes brick1
  option auth.addr.brick1.allow * 		# access to "brick" volume
end-volume


#=========================================================================