Skip to content

CIFS/NFS/FTP server for secure distributed storage in the cloud by IDAs (Information Distribution Algorithms)

License

Notifications You must be signed in to change notification settings

rafox2005/cloud-raid

 
 

Repository files navigation

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

About

CIFS/NFS/FTP server for secure distributed storage in the cloud by IDAs (Information Distribution Algorithms)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 98.3%
  • Shell 1.7%