To return expected results, you can:
Reduce the number of search terms.
Each term you use focuses the search further.
Check your spelling.
A single misspelled or incorrectly typed term can change your result.
Try substituting synonyms for your original terms.
For example, instead of searching for "java classes", try "java training"
Did you search for an IBM acquired or sold product ?
If so, follow the appropriate link below to find the content you need.
This document describes how to import a private key from the SFTP server to the IBM i.
In this situation, the SFTP server will send the System i SFTP client their private key. This scenario will work only if the SFTP server side generates the key pair using OpenSSH. If the key pair is generated in a format that cannot be understood, it will not work because the private key cannot be read. You can only convert the public key to a different format (in other words, openssh or SecSh).
You should do the following:
1.Store the private key in the /home/username/.ssh directory. Use the commands below to set the correct permissions on the SSH objects:
CALL QP2TERM
chmod 700 /home/username/.ssh
chmod 600 /home/username/.ssh/id_rsa_username
Replace
id_rsa_username
with the actual private key file name received from the SFTP server.
2.To connect to the SFTP server using the private key from the SFTP server, issue the following command:
sftp -o IdentityFile=/home/username/.ssh/id_rsa_username username@servername