Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 638 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 638 Bytes

Setting Up MySQL

  1. Create cloudraid user: CREATE USER 'cloudraid'@'localhost' IDENTIFIED BY 'cloudraid';
  2. Create cloudraid database: CREATE DATABASE cloudraid;
  3. Grant permissions to user: GRANT ALL PRIVILEGES ON cloudraid.* TO 'cloudraid'@'localhost' WITH GRANT OPTION;

Building Server

  1. Run mvn clean install.
  2. Run ant buildServer.

Starting Server (In Linux or Mac)

  1. In PROJECT/build, run sudo ./runsrv.sh.

Mounting NFS in client (Linux)

  1. mount -t nfs -o proto=tcp,port=2049 SERVER_IP_ADDRESS:/cloudraid /mnt/cloudraid