DbGate Serve Premium

7.1.9 · active · verified Wed Apr 22

DbGate Serve Premium is the commercial, web-based server component of the DbGate database administration tool, currently at version 7.1.9. It provides a cross-platform solution for managing a wide array of databases, including MySQL, PostgreSQL, SQL Server, Oracle, MongoDB, Redis, SQLite, CockroachDB, MariaDB, and ClickHouse, with premium support for Amazon Redshift and CosmosDB. This package is distinguished from the community `dbgate-serve` by offering additional commercial features, such as enhanced storage options via `STORAGE_SERVER` environment variables, enabling persistent server-side metadata and connection management. It maintains an active release cadence, frequently publishing updates and bug fixes. Key functionalities include schema comparison, a visual query designer, advanced chart visualizations, and robust batch export/import capabilities. Unlike its desktop application counterpart, `dbgate-serve-premium` runs as a standalone web server, accessible through a browser, facilitating remote database management and collaboration.

Common errors

Warnings

Install

Imports

Quickstart

Demonstrates global installation and startup of the DbGate Serve Premium web server, including an example for .env file configuration.

npm install -g dbgate-serve-premium

# Create a .env file in your working directory for configuration
# Example .env file for a MySQL connection (premium feature)
# STORAGE_SERVER=localhost
# STORAGE_USER=root
# STORAGE_PASSWORD=mypassword
# STORAGE_DATABASE=dbname
# STORAGE_ENGINE=mysql@dbgate-plugin-mysql
# (Note: STORAGE_xxx variables are specific to the Premium edition and store DbGate's metadata)

# Start the DbGate Premium server
dbgate-serve-premium

# Then open http://localhost:3000 in your browser to access the web interface.

view raw JSON →