WebDB

Web-based database IDE with query editor, data viewer, and management tools.

Access

WebDB runs locally on the server at port 22071, not exposed publicly.

To access the dashboard securely, create an SSH tunnel.

From your local machine:

ssh -L 22071:localhost:22071 root@<SERVER_IP>

Then visit: http://localhost:22071

This SSH tunnel securely forwards your local port 22071 to the server’s internal WebDB port, protecting it from external exposure.

Databases and Credentials

If any database (PostgreSQL, MariaDB, MongoDB, or CockroachDB) was installed:

  • The default user is root
  • Check database password in: /root/webdb/.env
  • Each password is automatically generated and stored securely there.

File Locations

  • Docker deployment definition: /root/webdb/docker-compose.yml
  • Environment and credential file: /root/webdb/.env
  • Optional SSH key directory: /root/webdb/.ssh
  • Persistent data for WebDB’s internal state and static version info: /root/webdb/.webdb

Application Details