The Red Hat Ecosystem Catalog is the official source for discovering and learning more about the Red Hat Ecosystem of both Red Hat and certified third-party products and services.
We’re the world’s leading provider of enterprise open source solutions—including Linux, cloud, container, and Kubernetes. We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.
Users can start our high performance graph database for trial use by downloading the image and following instructions provided.
The following information was extracted from the containerfile and other sources.
| Summary | Provides the latest release of Red Hat Universal Base Image 8. |
| Description | The Universal Base Image is designed and engineered to be the base layer for all of your containerized applications, middleware and utilities. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly. |
| Provider | Beijing eZoo Technologies Co., Ltd. |
| Maintainer | Red Hat, Inc. |
The following information was extracted from the containerfile and other sources.
| Repository name | ubi8 |
| Image version | 8.6 |
| Architecture | amd64 |
1 Download images
docker pull registry.cn-beijing.aliyuncs.com/ezoo/ezoodb_trial:[version]
2 Create ezoo user and group in local machine
groupadd -g 99 ezoodb
useradd -u 99 -g ezoodb -M -d /var/lib/ezoodb -s /bin/bash ezoodb
3 Start container to run a standalone ezoo-server with the image
docker run -d --name ezoo-server registry.cn-beijing.aliyuncs.com/ezoo/ezoodb_trial:[version]
4 Start container to run a standalone ezoo-server with the image, and then mount the local machine data volumes. Also we can map the RPC port and HTTP port with the host machine.
mkdir -p /var/lib/ezoodb
mkdir -p /var/lib/ezoodb/data
mkdir -p /var/lib/ezoodb/oplog
mkdir -p /var/lib/ezoodb/log
chown -R ezoodb:ezoodb /var/lib/ezoodb
docker run -d -p 9090:9090 -p 9898:9898 -v /var/lib/ezoodb/data:/var/lib/ezoodb/data -v /var/lib/ezoodb/oplog:/var/lib/ezoodb/oplog -v /var/lib/ezoodb/log:/var/lib/ezoodb/log --name ezoo-server registry.cn-beijing.aliyuncs.com/ezoo/ezoodb_trial:[version]
5 Config
The eZoo Graph Database default location of the configuration file is /var/lib/ezoodb/target/conf/ezoodb-docker.conf.default in container. But user can mount a ezoodb.conf to override the default configuration file.
docker run -v /var/lib/ezoodb/ezoodb.conf:/var/lib/ezoodb/ezoodb.conf --name ezoo-server registry.cn-beijing.aliyuncs.com/ezoo/ezoodb_trial:[version]
6 Download SDK and get API docs
view our official website, www.ezoodb.com
7 For more technical support, welcome to contact with us.