Sign inSign up

dbhitman/oracanvas

By dbhitman

Updated 10 months ago

Edit, validate, and manage Oracle TNS files in a modern web app for DBAs and developers

Image
0

480

dbhitman/oracanvas repository overview

What is OraCanvas? OraCanvas is a modern, user-friendly web app for editing, validating, and managing Oracle network configuration files: TNSNAMES.ORA, SQLNET.ORA, and LISTENER.ORA.

Using OraCanvas Docker Image Download the Docker Image Run the following command to pull the latest OraCanvas image from Docker Hub:

bash docker pull dbhitman/oracanvas

Run the OraCanvas Container

Start the OraCanvas container and map port 8080 on your machine to port 80 in the container:

bash

docker run -d -p 8080:80 --name oracanvas dbhitman/oracanvas:latest

-d runs the container in detached mode (in the background).

-p 8080:80 maps your local port 8080 to the container's port 80.

--name oracanvas assigns the container a friendly name.

Access OraCanvas Open a web browser and go to:

http://localhost:8080 You should see the OraCanvas web interface where you can edit and manage Oracle network configuration files.

Stop the Container

To stop the OraCanvas container when you're done:

bash

docker stop oracanvas

Remove the Container (Optional)

To remove the container completely:

bash

docker rm oracanvas

This guide helps you quickly start using OraCanvas in a containerized environment with Docker.

How to Use Select a tab for the config file you want to work with. Load Sample to see example configurations for each file type. Edit or paste your own config in the editor area. Click Validate to check if your config matches the sample exactly. A green orb means valid; a red orb means invalid (and will auto-reset to the sample). Use Download to save your validated config file. Use Clear to empty the editor. Features Modern, accessible, and responsive UI Strict validation against advanced Oracle config samples Instant feedback with visual orbs Easy download and management of config files Need More? See the README for technical details, or visit the project on GitHub.

About Created by Anil Mahadev, Oracle ACE.

Tag summary

Content type

Image

Digest

sha256:b98e62ffb

Size

21.6 MB

Last updated

10 months ago

docker pull dbhitman/oracanvas