Root-Server Tutorial

ROOT-SERVER TUTORIAL

MySQL Zugriff über SSH

Zugriff auf einen MySQL-Server via SSH-Tunnel

Einleitung

In diesem Tutorial zeige ich dir, wie du dich mit einem MySQL-Server durch einen SSH-Tunnel verbindest. Mit dem SSH-Tunnel können wir uns auf den Remote Server mittels SSH aufschalten und den MySQL-Port durch diesen Tunnel legen. Das bedeutet, dass nachdem wir uns erfolgreich verbunden haben, der Datenbank-Server mittels 127.0.0.1 erreichbar ist. Somit müssen wir nicht mehr die öffentliche IP verwenden.

Warum sollten wir das machen?

Das Verbinden über den SSH-Tunnel hat zwei Vorteile:

  1. Wir müssen auf dem Server keinen Port freigeben. Würden wir den Port freigeben, so wäre dieser für das ganze Internet verfügbar.
  2. Die Daten sind durch den SSH-Tunnel Ende-zu-Ende verschlüsselt.

Beide Vorteile zeigen klar, dass es sich hier um Sicherheitsaspekte handelt.

Voraussetzungen

Folgende Dinge brauchen wir:

  • SSH-Zugriff zum netcup-Server (vServer oder Root-Server).
  • HeidiSQL ein freier MySQL-Client, welcher das Verbinden über einen SSH-Tunnel unterstützt.
  • Einen MySQL-User mit Passwort. Entweder root oder ein vorher erstellter User.

Warum benutzen wir kein phpMyAdmin?

Ein guter Punkt. Wir verzichten auf phpMyAdmin, da phpMyAdmin auf dem Server läuft und wir somit einen Port öffnen müssten. Genau das wollen wir ja nicht.

Step 1 - HeidiSQL einrichten - Netwerk

HeidiSQL after start

Beim ersten Start von HeidiSQL wirst du ein vergleichbares Bild wie oben vorfinden. Es kann sein, dass du dort keine Einträge hast. Unten links in der Ecke über "new", werden neue Einträge erstellt.

Nachdem du eine neue Session erstellt hast, kannst du auf der rechten Seite unter dem Tab "Settings" folgende Optionen vornehmen:

  • Network type: MariaDB or MySQL (SSH tunnel)
  • Library: Library, die zu deinem Server passt. libmariadb.dll für MariaDB-Server oder libmysql.dll für MySQL-Server
  • Hostname / IP: 127.0.0.1
  • User: root oder der neu erstellte User
  • Password: Passwort
  • Port: 3306

Als nächstes gehen wir zum Tab 'SSH-tunnel'.

Step 2 - SSH Einstellungen

HeidiSQL SSH-Settings

In diesem Tab stellen wir die SSH-Konfiguration ein:

  • Aktiviere als Erstes die Checkbox "Use SSH tunnel".
  • SSH executable: plink.exe
  • SSH host + port: öffentliche IP-Adresse/Hostname deines Servers und SSH-Port
  • Username: dein Benutzername zum SSH-Login
  • Password: dein SSH-Passwort, überspringe dies, wenn du das Private/Public Schlüssel Verfahren nutzt.
  • SSH timeout: 4 (Standard)
  • Private key file: Pfad zu deinem privaten Schlüssel, leer lassen falls nicht genutzt.
  • Local port: 3307 (Standard)

Unten links kannst du nun deine Änderungen über "save" speichern.

Zusammenfassung

Du kannst nun über den SSH-Tunnel auf deinen MySQL-Server zugreifen, ohne dass du irgendwelche Ports öffnen musst.

License

MIT

Copyright (c) 2021 netcup

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Contributor's Certificate of Origin

By making a contribution to this project, I certify that:

  1. The contribution was created in whole or in part by me and I have the right to submit it under the license indicated in the file; or

  2. The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same license (unless I am permitted to submit under a different license), as indicated in the file; or

  3. The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it.

  4. I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the license(s) involved.

Veröffentlicht am 23.6.2023 von Andre E.

Tutorial einreichen

Erhalte einen 60€ netcup Gutschein für jedes veröffentlichte Tutorial.