Comments on Creating An NFS-Like Standalone Storage Server With GlusterFS On Ubuntu 9.10
Creating An NFS-Like Standalone Storage Server With GlusterFS On Ubuntu 9.10 This tutorial shows how to set up a standalone storage server on Ubuntu 9.10. Instead of NFS, I will use GlusterFS here. The client system will be able to access the storage as if it was a local filesystem. GlusterFS is a clustered file-system capable of scaling to several peta-bytes. It aggregates various storage bricks over Infiniband RDMA or TCP/IP interconnect into one large parallel network file system. Storage bricks can be made of any commodity hardware such as x86_64 servers with SATA-II RAID and Infiniband HBA.
3 Comment(s)
Comments
Its best to use 'sudo -s' instead of 'sudo su'
see the following URL for the logic.
http://ubuntu-tutorials.com/2008/05/09/a-root-shell-on-ubuntu-the-right-way/
Save yourself some typing chars.
Instead of cat /dev/null > /etc/glusterfs/glusterfsd.vol
try
> /etc/glusterfs/glusterfsd.vol
Instead of cp /etc/glusterfs/glusterfsd.vol /etc/glusterfs/glusterfsd.vol_orig
try
cp /etc/glusterfs/glusterfsd.vol{,_orig}
-Adam