Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/p4zd4n/centralized-computing-system


https://github.com/p4zd4n/centralized-computing-system

java network-programming

Last synced: 4 days ago
JSON representation

Awesome Lists containing this project

README

        

# 💻 Centralized Computing System

## 👀 About

## ▶️ Run

Clone repository

```bash
git clone [email protected]:P4ZD4N/centralized-computing-system.git
```

Navigate to the repository

```bash
cd /path/to/centralized-computing-system/src
```

Compile server classes

```bash
javac *.java
```

If you want to use client you should also compile client class

```bash
javac client/Client.java
```

Create JAR file

```bash
jar cfm CCS.jar manifest.txt *.class
```

Run server

```bash
java -jar CCS.jar
```

Run client

```bash
java client.Client
```