sftp - Notepad++ NppFTP authenticated, no error, no files, no folders -
nppftp hanging when connecting without error message.
on starting notepad++, nppftp - disconnected
, displayed (correctly) in nppftp window.
selecting (dis)connect
button , profile starts connecting normally.
in nppftp - output window following displayed:
[nppftp] initialized connecting [sftp] host key accepted [sftp] banner: ~~~~ [sftp] authenticated
everything stops here. rest of nppftp buttons "light up" after connecting , files , folders can browsed. settings
, show messages
buttons work. the nppftp window says nppftp - connecting
.
notepad++ continues work @ point nppftp stuck. notepad++ must restarted put nppftp in disconnected
state enable (dis)connect button
.
i'm using private key file authentication passphrase. it's worked before not now. ideas?
notepad++ v6.1.5
nppftp v0.2.4
you put output .bashrc
. makes ssh
sessions work finetm, makes sftp sessions fail.
if want have output after login, should limit interactive sessions (as proposed in question on serverfault):
if [[ $- == *i* ]]; echo "your stuff" fi
from man bash
:
an interactive shell 1 started without non-option arguments , without
-c
option standard input , error both connected terminals (as determinedisatty(3)
), or 1 started-i
option. ps1 set ,$-
includesi
if bash interactive, allowing shell script or startup file test state.
Comments
Post a Comment