A mini multi-storage distributed system that mimicks geo-spatial distribution of data storage centers similar to cloud storage services like Google Drive, Dropbox etc that ensures abstraction, high availability, scalability and failure tolerance.
Install Java and set environment variables. In FileServerImpl.java, change 'E://Movies' path to your own similarly for FileServerImpl2.java
\server> javac *.javac
\server> start rmiregistryStarting the 3 servers
\server> java FileServer movies
\server> java FileServer series
\server> java FileServer backupCopy FileServerIntf.class and FileServerIntf3.java to client dir
\client> javac FileClient.java
\server> java FileClient\client> ls
\client> cd movies
\client> ls
\client> cd ..
\client> cd series
\client> lsCrash any movie or series server and try to access it again from client, backup server should be taking care for the crashed servers.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.