2
We are in the process of converting all FTP mainframe jobs to SFTP. I used the ssh-keygen -f id_dsa_userid
command to create the key pairs. Sent the public key to client to be copied into their authorized_keys
file. When job is executed, I get the following error.
EZYXW11E XtlibError: invalidDisplay xtInitialize XtToolkitError
Can't open display: MVSDMC1
FOTS1370 Host key verification failed.
lost connection.
Client is using CrushFTP
software which I know nothing about. What are we missing?
If you're the one providing the service, why is your client copying your public key to their
authorized_keys
file, not vice versa?It appears that the server is not listed in the
known_hosts
file. Additionally, the error looks a bit like they're trying to start an X window session. – Patrick R. – 2018-04-04T15:46:44.017XtToolkit is a library for the X Server (graphical display), which should have nothing to do with SFTP. On the other hand,
ssh
can forward X connections. Guess: Something is setup wrongly wrt. to X forwarding, and tries to establish it, at least on one end. BTW, you can enable verbose debug messages on normal sftp/ssh clients/servers (e.g.-v
for the standardssh
,sftp
). – dirkt – 2018-04-04T17:19:10.580Don't know if this is the issue, but I've seen SSH fail if server and client time is not in sync -- 15 min. max difference, I believe. https://community.centrify.com/t5/Centrify-Express/Clock-skew-too-great-between-this-machine-and-the-domain-server/td-p/20832
– DrMoishe Pippik – 2018-04-04T18:25:53.800