Project to implement Lamport Mutual Exclusion algorithm between clients which act like peers. The servers perfrom read and write to files. These files are considered as critical resources
Inside the src/ folder, there are two folders: server/ and client/, which corresponds to the server and the client respectively. To build the server the following commands are to be given
$cd server/ $make server
Similarly for client: $cd client/ $make client
This will generate the executables in the respective folders. For the sake of convinience, the executables are already built in their respective folders. In order to clean them, go the respective folder and give the following command:
$make clean
After the exectables are built. The servers and the client exectables are to be copied to a total of 8 different machines (5 clients and 3 servers):
$./client <client_num>
client_num is a value that denotes the client number. It must be a number from 1 to 5.
Before running the server, 3 folders, one corresponding to each server must be created in the file system. For the sake of example, let them be srv1/, srv2/ and srv3/. All these 3 folders must be in the same location as the client. One server executable generated in the previous step must be copied into each folder. For running the server:
- Each execution of the servers and the clients will generate two txt files in the root folder (the folder where client is present): ipaddrs.txt and serv_ipaddrs.txt. Prior to next execution, these two files must be manually deleted.
- Servers must be executed first, i.e, before the execution of clients. And the clients must be executed in order. This means, first ./client 1 must run, then ./client 2 (on a different machine ofcourse), then ./client 3 and so on.