Click HERE to see how Saviynt Intelligence is transforming the industry. |
06/19/2024 01:01 AM
Hi,
In case of create SFTP connetion, select PASSWORD/ SSH_KEY / PEM_KEY_FILE as AUTH_CREDENTIAL_TYPE.
And in case of .ppk File , following page says it is need to covert to .pem or .ssh.
"Converting a .ppk File to a .pem File / Converting a .ppk File to a .ssh File"
https://docs.saviyntcloud.com/bundle/SFTP-Certified-v24x/page/Content/Configuring-the-Integration-fo...
In case of .pvk, what should I do?
I think it is need to convert to pem or .ssh as same as .ppk , is it right?
Regards,
Solved! Go to Solution.
06/19/2024 09:43 PM
Yes, you are correct. In case of a .pvk file, you will need to convert it to a .pem or .ssh format to use it for authentication in SFTP connections. The .pvk file format is typically used for private keys in Windows environments and needs to be converted to a format compatible with SSH.
Here's how you can convert a .pvk file to a .pem file using OpenSSL:
Install OpenSSL: Ensure you have OpenSSL installed on your system. You can download it from the OpenSSL website or use a package manager.
Convert .pvk to .pem:
Replace yourfile.pvk with the path to your .pvk file and yourfile.pem with the desired output file name.
If you need to convert the .pvk file to a format compatible with SSH directly:
Convert .pvk to .pem:
Convert .pem to .ssh:
Suppose you have a file named key.pvk:
Convert key.pvk to key.pem:
Convert key.pem to key.ssh:
This way, you'll have the key in a format that can be used for SFTP connections.
06/23/2024 06:50 PM
Hi,
Thank you for detail.
Please this case.
Regards,