Using SFTP or SSH public key authentication to make the connection to remote system is more secure and robust method than login with account password. SSH public key authentication is an authentication method that relies on asymmetric cryptographic algorithms that generate a pair of separate keys, one private and the other public. Private Key is the secret key which is stored on the computer you use to connect to the remote system. Public key as the name suggest you can share with anyone without compromising the Private Key and it stored on the remote system which you will be accessing.
Pre-requisite for making SFTP or SSH connection using public key authentication is –
- To setup public key authentication. You can refer my post for this – https://kodehelp.com/setup-ssh-public-key-authentication-connect-remote-system/
- Once you have setup SSH public key authentication get the path of your private key file. It will be in user home/.ssh directory.
Please use below java program to make SFTP/SSH connection. This java program uses JSch java API to make SFTP/SSH connection.