Page cover image

Over


Over Node Installation Guide

Prerequisites

Before you begin, ensure that your server meets the following requirements:

  • CPU: 4 cores

  • RAM: 16 GB

  • Disk Space: 50 GB

  • Operating System: Ubuntu 20.04 or later

  • Network Ports:

    • Port 8000 (for OVE core)

    • Port 9000 (for additional services)

Installation Steps

1. Access Your Server

Log into your server via SSH.

2. Install Docker

Ensure that Docker is installed on your system. You can install Docker by running the following commands:

sudo apt update
sudo apt install docker.io

3. Download OVE Node Software

Clone the OVE repository from GitHub or download the installer:

git clone https://github.com/your-repo/ove.git
cd ove

4. Run the Installer

Use the provided installer script to set up OVE:

./install.sh

5. Configure Environment Variables

During the installation, configure environment variables by editing the docker-compose.setup.ove.yml file. Set parameters such as hostnames and port numbers.

6. Resolve Port Conflicts

Ensure that all HOST_PORT values defined in docker-compose.setup.ove.yml are not currently in use to avoid conflicts.

7. Start OVE Services

Once configured, start the services using Docker Compose:

docker-compose -f docker-compose.setup.ove.yml up

8. Verify Installation

After starting, verify that OVE is running by accessing the home page at:

http://<OVE_CORE_HOST>:<PORT>

Check the status of running containers with:

docker ps

Last updated