0

I can connect to my db no problem via the standard PhpStorm / WebStorm db window by using the "configure ssh" option. I would like to use the DB Navigator though as it has many more features.

Did this : How to configure DB Navigator for Jetbrains PHPStorm and WebStorm

However, my issue is that I can only connect to my DB's via a SSH tunnel. They are not publicly accessible and I do not have a VPN to the network.

Can I use the DB Navigator plugin? I cannot seem to find a place to set up the SSH tunnel.

Community
  • 1
  • 1
Red2678
  • 3,177
  • 2
  • 29
  • 43

2 Answers2

0

In IntelliJ Idea you have bundled "Database support" plugin (probably the same in other JB ides), where you can configure data source over ssh tunnel. Do to this you have to:

  1. Open "Database" plugin window
  2. Add -> Data Source -> MySQL
  3. Enter database properties:
    • host: localhost
    • username and passowrd to databse
  4. Click "Configure SSH"
    • check Use SSH tunnel
    • fill connection details
Jakub Kubrynski
  • 13,724
  • 6
  • 60
  • 85
  • Sorry for my delayed response. Yes this is for the native DB support. But I was referring to the DB Navigator plugin, which is not supported for WebStorm. Thanks for your answer anyway! :) – Red2678 Feb 09 '14 at 00:24
0

Database Navigator plugin is not available in WebStorm...

UPDATE 4/30/19:

The plugin is now available for WebStorm:

https://plugins.jetbrains.com/plugin/1800-database-navigator

Red2678
  • 3,177
  • 2
  • 29
  • 43
  • 1
    Database Navigator is now available for WebStorm: https://plugins.jetbrains.com/plugin/1800-database-navigator – Ehsan Apr 30 '19 at 06:42