PHPStorm (8.x) hat beim Connect via SFTP mit einem Remote Server auf dem die neue Version von Debian 8 Jessy läuft Verbindungsprobleme.
Beim Einrichten des neuen Remote Servers wird der Verbindungsversuch mit “Algorithm negotiation fail” quittiert.

Um das Problem (quick and dirty ?!) zu beseitigen, muss in der Datei /etc/ssh/sshd_config auf dem Debian Server folgende Zeile hinzugefügt werden:

# Add this to the bottom of the /etc/ssh/sshd_config File
KexAlgorithms=diffie-hellman-group1-sha1

Anschließend muss der sshd Dienst noch neugestartet werden:

systemctl restart sshd

Sicherlich gibt es einen besseren Weg dies zu bewerkstelligen, aber für einen Test / Entwicklungsserver ist dies sicherlich noch okay.

Categories: Linux

1 Comment

PHPStorm SFTP to a Linux machine | Lysender's Daily Log Book · June 20, 2015 at 3:48 am

[…] found the fix via a German blog post here: http://www.dailydevbook.de/phpstorm-sftp-connect-debian-8-jessy-algorithm-negotiation-fail/ but it is easy to understand what he is trying to say, like: open this file, and add this, […]

Comments are closed.