-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart2.sh
executable file
·8 lines (8 loc) · 1.12 KB
/
start2.sh
1
2
3
4
5
6
7
8
export SERVER_NAME="location_server_8080" && PORT="8080" && IS_BYZANTINE=false && BYZANTINE_SERVERS=2 && BYZANTINE_USERS=1 && cd location_server && ./mvnw compile quarkus:dev
export SERVER_NAME="location_server_8081" && PORT="8081" && IS_BYZANTINE=true && BYZANTINE_SERVERS=2 && BYZANTINE_USERS=1 && cd location_server && ./mvnw compile quarkus:dev
export SERVER_NAME="location_server_8082" && PORT="8082" && IS_BYZANTINE=true && BYZANTINE_SERVERS=2 && BYZANTINE_USERS=1 && cd location_server && ./mvnw compile quarkus:dev
export USERNAME="user1" && export PORT="8091" && export isByzantine="true" && cd user_node && ./mvnw compile quarkus:dev &
export USERNAME="user2" && export PORT="8092" && export isByzantine="true" && cd user_node && ./mvnw compile quarkus:dev &
export USERNAME="user3" && export PORT="8093" && export isByzantine="false" && cd user_node && ./mvnw compile quarkus:dev &
export USERNAME="user4" && export PORT="8094" && export isByzantine="false" && cd user_node && ./mvnw compile quarkus:dev &
export USERNAME="user5" && export PORT="8095" && export isByzantine="false" && cd user_node && ./mvnw compile quarkus:dev &