Zwing Docs

Accessing Zwing MySQL Database

This document explains steps to create to a Zwing MySQL Database.

Prerequisits

1. Access to Staging Jumphost

Verify if you have the access

ssh azureuser@stage.jh.ginesys.one

If you don't have it, please drop a message on #ask-platform channel on slack with your access request. Access to a certain environments will be subject to profile and justification.

2. DBeaver installed

If not already, please download from here.

https://dbeaver.io/

Steps

1. Open DBeaver

  • Launch DBeaver
  • Click Database → New Database Connection
  • Select MySQL and click Next

2. Configure MySQL Connection

In the Main tab:

  • Host: 172.28.1.5
  • Port: 3306
  • Database: leave empty
  • Username: zwing_dev_user
  • Password: UJo3T0P5ey11

3. Configure SSH Tunnel

Go to the SSH tab:

  • Use SSH Tunnel: ✅ enabled
  • Host/IP: stage.jh.ginesys.one
  • Port: 22 (default SSH port)
  • Username: azureuser
  • Authentication Method:
    • Public Key → if using .pem or .ppk key file
      • Private Key File: select your key file
      • Passphrase: if required

4. Test Connection

  • Click Test Connection
  • If successful, you’ll see a confirmation dialog ✅
  • Click Finish

5. Connect & Verify

  • Expand the connection in the Database Navigator
  • Run a test query:
SHOW DATABASES;
Edit on GitHub