本教程将介绍如何在Fedora 13上设置独立存储服务器。而不是NFS,我将在此使用GlusterFS 。 客户端系统将能够访问存储,就像它是本地文件系统一样。 GlusterFS是一种能够缩放到几个peta字节的集群文件系统。 它将Infiniband RDMA或TCP / IP互连的各种存储砖聚合成一个大型并行网络文件系统。 存储砖可以由诸如具有SATA-II RAID和Infiniband HBA的x86_64服务器的任何商品硬件制成。
我不会保证这将为您工作!
1初步说明
在本教程中,我使用两个系统,一个服务器和一个客户端:
-
server1.example.com:IP
地址192.168.0.100
(服务器) -
client1.example.com:IP
地址192.168.0.101
(客户端)
两个系统应该能够解析其他系统的主机名。 如果这不能通过DNS完成,您应该编辑/ etc / hosts
文件,使其在两个系统上包含以下两行:
vi /etc/hosts
[...] 192.168.0.100 server1.example.com server1 192.168.0.101 client1.example.com client1 [...] |
(也可以在以下设置中使用IP地址而不是主机名,如果您希望使用IP地址,则不需要关心主机名是否可以解决。)
2设置GlusterFS服务器
server1.example.com:
GlusterFS服务器可作为Fedora 13的软件包提供,因此我们可以按如下方式进行安装:
yum install glusterfs-server
命令
glusterfs --version
现在应该显示您刚刚安装的GlusterFS版本(在这种情况下为2.0.9):
[root@server1 ~]# glusterfs --version
glusterfs 2.0.9 built on Apr 11 2010 20:39:55
Repository revision: v2.0.9
Copyright (c) 2006-2009 Gluster Inc. <http://www.gluster.com>
GlusterFS comes with ABSOLUTELY NO WARRANTY.
You may redistribute copies of GlusterFS under the terms of the GNU General Public License.
[root@server1 ~]#
接下来我们创建几个目录:
mkdir /data/
mkdir /data/export
mkdir /data/export-ns
现在,我们创建了GlusterFS服务器配置文件/etc/glusterfs/glusterfsd.vol
(我们首先备份原始的/etc/glusterfs/glusterfsd.vol
文件),该文件定义将导出哪个目录( / data / export
)和什么客户端被允许连接( 192.168.0.101
= client1.example.com
):
cp /etc/glusterfs/glusterfsd.vol /etc/glusterfs/glusterfsd.vol_orig
cat /dev/null > /etc/glusterfs/glusterfsd.vol
vi /etc/glusterfs/glusterfsd.vol
volume posix type storage/posix option directory /data/export end-volume volume locks type features/locks option mandatory-locks on subvolumes posix end-volume volume brick type performance/io-threads option thread-count 8 subvolumes locks end-volume volume server type protocol/server option transport-type tcp option auth.addr.brick.allow 192.168.0.101 # Edit and add list of allowed clients comma separated IP addrs(names) here subvolumes brick end-volume |
请注意,可以使用通配符的IP地址(如192.168。*
),并且可以指定多个以逗号分隔的IP地址(例如192.168.0.101,192.168.0.102
)。
之后,我们为GlusterFS服务器创建系统启动链接并启动它:
chkconfig --levels 35 glusterfsd on
/etc/init.d/glusterfsd start
3设置GlusterFS客户端
client1.example.com:
有一个用于Fedora 13的GlusterFS客户端rpm包,但问题是您会收到像df:`/ mnt / glusterfs
这样的错误:软件导致连接中止
或df:`/ mnt / glusterfs':传输端点未连接
当您尝试访问GlusterFS共享。 这就是为什么我们从源头构建GlusterFS客户端,以避免这些问题。
在构建GlusterFS客户端之前,我们先安装其先决条件:
yum groupinstall 'Development Tools'
yum groupinstall 'Development Libraries'
yum install libibverbs-devel fuse-devel
然后我们下载GlusterFS 2.0.9源码( 请注意,这是与服务器上安装的版本相同 ),并构建GlusterFS,如下所示:
cd /tmp
wget http://ftp.gluster.com/pub/gluster/glusterfs/2.0/LATEST/glusterfs-2.0.9.tar.gz
tar xvfz glusterfs-2.0.9.tar.gz
cd glusterfs-2.0.9
./configure
在./configure
命令的末尾,你应该看到这样的东西:
[...]
GlusterFS configure summary
===========================
FUSE client : yes
Infiniband verbs : yes
epoll IO multiplex : yes
Berkeley-DB : yes
libglusterfsclient : yes
argp-standalone : no
[root@client1 glusterfs-2.0.9]#
make && make install
ldconfig
之后检查GlusterFS版本(应为2.0.9):
glusterfs --version
[root@client1 glusterfs-2.0.9]# glusterfs --version
glusterfs 2.0.9 built on Sep 27 2010 19:20:46
Repository revision: v2.0.9
Copyright (c) 2006-2009 Gluster Inc. <http://www.gluster.com>
GlusterFS comes with ABSOLUTELY NO WARRANTY.
You may redistribute copies of GlusterFS under the terms of the GNU General Public License.
[root@client1 glusterfs-2.0.9]#
然后我们创建以下两个目录:
mkdir /mnt/glusterfs
mkdir /etc/glusterfs
接下来我们创建文件/etc/glusterfs/glusterfs.vol
:
vi /etc/glusterfs/glusterfs.vol
volume remote type protocol/client option transport-type tcp option remote-host server1.example.com # can be IP or hostname option remote-subvolume brick end-volume volume writebehind type performance/write-behind option window-size 4MB subvolumes remote end-volume volume cache type performance/io-cache option cache-size 512MB subvolumes writebehind end-volume |
确保在选项远程主机
行中使用正确的服务器主机名或IP地址!
而已! 现在我们可以使用以下两个命令之一将GlusterFS文件系统安装到/ mnt / glusterfs
:
glusterfs -f /etc/glusterfs/glusterfs.vol /mnt/glusterfs
要么
mount -t glusterfs /etc/glusterfs/glusterfs.vol /mnt/glusterfs
你现在应该看到新产品中的新股份...
mount
[root@client1 glusterfs-2.0.9]# mount
/dev/mapper/vg_client1-lv_root on / type ext4 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /dev/shm type tmpfs (rw)
/dev/sda1 on /boot type ext4 (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)
/etc/glusterfs/glusterfs.vol on /mnt/glusterfs type fuse.glusterfs (rw,allow_other,default_permissions,max_read=131072)
[root@client1 glusterfs-2.0.9]#
...和...
df -h
[root@client1 glusterfs-2.0.9]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_client1-lv_root
29G 2.6G 25G 10% /
tmpfs 185M 0 185M 0% /dev/shm
/dev/sda1 194M 23M 161M 13% /boot
/etc/glusterfs/glusterfs.vol
29G 2.7G 25G 10% /mnt/glusterfs
[root@client1 glusterfs-2.0.9]#
您可以修改/ etc / fstab
,而不是在客户机上手动安装GlusterFS共享,以便在客户端启动时自动挂载共享。
打开/ etc / fstab
并附加以下行:
vi /etc/fstab
[...] /etc/glusterfs/glusterfs.vol /mnt/glusterfs glusterfs defaults 0 0 |
要测试您的/ etc / fstab
是否正常工作,请重新启动客户端:
reboot
重新启动后,您应该在...的输出中找到共享
df -h
...和...
mount
4链接
- GlusterFS: http : //www.gluster.org/
- Fedora: http : //fedoraproject.org/