DEV Community

Cover image for Install Maven and run Ward monitoring tool on linux server to see server resources consumption in real time
Junaid Anwar
Junaid Anwar

Posted on

Install Maven and run Ward monitoring tool on linux server to see server resources consumption in real time

I am trying to install this monitoring tool on my Linux server to see the server resources consumption in real time. https://github.com/B-Software/Ward

However the documentation is not self explanatory assuming I have no experience with java and jar files before. I am having a hard time setting the tool up.

Here is how I did it

  1. Install Apache Maven

    • sudo apt update
    • sudo apt install maven
    • mvn -version
  2. git clone https://github.com/B-Software/Ward.git

  3. cd Ward

  4. mvn clean package

  5. cd into the target directory and run java -jar ward-1.8.8.jar

  6. Open localhost:4000 (or your server's ip followed by :4000)

Photo by Filipe Resmini on Unsplash

Top comments (0)