Setting Up MySQL Create cloudraid user: CREATE USER 'cloudraid'@'localhost' IDENTIFIED BY 'cloudraid'; Create cloudraid database: CREATE DATABASE cloudraid; Grant permissions to user: GRANT ALL PRIVILEGES ON cloudraid.* TO 'cloudraid'@'localhost' WITH GRANT OPTION; Building Server Run mvn clean install. Run ant buildServer. Starting Server (In Linux or Mac) In PROJECT/build, run sudo ./runsrv.sh. Mounting NFS in client (Linux) mount -t nfs -o proto=tcp,port=2049 SERVER_IP_ADDRESS:/cloudraid /mnt/cloudraid