A place for Apptio product users to learn, connect, share and grow together.
DataDrop is the Apptio Secure File Transfer Protocol (SFTP) server. When using SFTP to DataDrop, you must generate a key pair (private key and corresponding public key). This supports authentication to the provisioned datadrop server. To maintain security, Apptio should not be given the private key.
DataDrop uses public/private SSH keys for authentication. In this example, we use PuTTYgen to generate and configure a public/private key pair. Click here to view the PuTTYgen documentation. This application is neither endorsed nor supported by Apptio.
You can initiate a terminal session to generate keys in iOS, Linux, or Unix. Enter the following:
cd ~/.ssh
ssh-keygen -t rsa -b 4096 -f <keyname> -C "<comment>"
You will be prompted for a passphrase and confirmation. The following two files are generated:
For example:
~/.ssh$ ssh-keygen -t rsa -b 4096 -f testkey -C "testkey1"
Generating public/private rsa key pair.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in testkey.
Your public key has been saved in testkey.pub.
The key fingerprint is:
SHA256:RtgrTu+WeRn7IrU42YLRRYh3yW0ddI1+kPL4ewP9egw testkey1
The key's randomart image is:
+---[RSA 4096]----+
| . o o oo+o|
| .oo = + =..|
| ..oo . = . |
| . .. . o .|
| o.S. ... |
| o.+. o .E. |
| .o.B = .+.|
| ..X B ..=|
| ..= o. .+.|
+----[SHA256]-----+