DBMS Discovery

WebDB backend scan your localhost machine to find ports commonly used by DBMS:

DBMS
Start port
End port

MySQL

3300

3320

PostgreSQL

5430

5450

CockroachDB

26257

26277

TiDB

4000

4020

MongoDB

27010

27030

You can add hosts to scan with the SCAN_HOSTS variable

As example, here is the docker-compose used by demo.webdb.app

    demo-app:
        image: webdb/app
        restart: always
        networks:
            - landing
        environment:
            SCAN_HOSTS: demo-maria,demo-postgre,demo-mongo

Last updated

Was this helpful?