From our side (downloading files and uploading to the clients SFTP server):
Pre-requisite: Install the Docker.
- Download the instana-console version that customer need:
yum install --downloadonly --downloaddir=. instana-console-xxx
- Export docker images (Note: Install instana-console-xxx, same vesion as the one from the first step, on your machine):
instana images export -k {on_prem_agent_key}
- Connect to the SFTP server:
sftp -i {private_key} {host_name}@{ip_address}
cd /uploads
- Transfer the files into uploads folder on SFTP server:
put instana-console-xxx.rpm
put export-xxx.tar
From customer's side (downloading the files from the SFTP server):
sftp -i {private_key} {host_name}@{ip_address}
get -r uploads
rm {files}
// Total space on the server is limited so you have to remove files after you download itexit
Comments