DEV Community

Cover image for Step-by-step guide on installing AgensBrowser using a Docker image.
steila
steila

Posted on

1 1 1 1 1

Step-by-step guide on installing AgensBrowser using a Docker image.

Introduction.
AgensBrowser is a user interface which allows users to manage AgensGraph on a web browser. In this tutorial, you will install AgensBrowser using a docker image.

Prerequisites.
Before you proceed to the installation guide, make sure you have done the following,

  • Installed Ubuntu.
  • Installed AgensGraph.
  • Installed Docker or use this tutorial.

Installation Guide.

  1. Download the docker image by running the command below,

    docker pull bitnine/agensbrowser

  2. Create a docker volume where data can be persisted by running the command below.

    docker volume create --name myvolume

  3. Start the Container in different modes of your choice by running the command below.

    (Temporary mode)
    $ docker run -it bitnine/agensbrowser:v2.1.1 bash
    (Save mode)
    $ docker run -it -v myvolume:/home/agens/AgensGraph/data 
    bitnine/agensbrowser:v2.1.1 bash
    
  4. Enter into the directory where AgensBrowser was installed.

    cd /home/agens/AgensBrowser

  5. Launch AgensBrowser by running the command below /agensbrowser.sh.

  6. Visit this URL http://localhost:8085/index.html on the web browser to manage your AgensGraph database.

  7. Stop the server by using the exit command.

Conclusion
AgensBrowser is a management tool for AgensGraph, it provides various features such as Rest API Integration, and it's quite useful for easy monitoring and management of AgensGraph.

References
https://hub.docker.com/r/bitnine/agensbrowser
https://hub.docker.com/r/bitnine/agensgraph

Heroku

Simplify your DevOps and maximize your time.

Since 2007, Heroku has been the go-to platform for developers as it monitors uptime, performance, and infrastructure concerns, allowing you to focus on writing code.

Learn More

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay