The process of moving data from your local environment to your Rhino Health client using SFTP depends on the operating system of your local machine:
Connecting to your Rhino Health Client via SFTP from MacOS, Linux & Windows 10+
- Open a terminal or command prompt on your respective operating system, and navigate to the folder where the data that you would like to upload are located.
- Connect to your Rhino Health Client via SFTP
- Retrieve your SFTP server IP and credentials from your Rhino Health Federated Computing Platform profile page. If you need a quick refresher on how to do that, you can follow this support article to help you: How can I find my SFTP Server Name?
- Connect to your Rhino Health client via SFTP, by entering the following. Note: Ensure to replace RHINO_CLIENT_IP_ADDRESS in the below command with the credentials found in your profile.
> sftp rhinosftp@RHINO_CLIENT_IP_ADDRESS
- Next, you will be prompted to enter your SFTP password, and if everything is entered properly you will be connected to your Rhino Health client and your command line should change to look like the following:
sftp>
For additional help with common commands within the SFTP terminal interface, check out the section Common Commands when SFTP'ing Data.
Connecting to your Rhino Health Client via SFTP from Other Operating Systems
- To SFTP data from other Operating Systems to your Rhino Health client, you will need to first install an SFTP client, like Cyberduck, WinSCP, etc.
- Once your SFTP client has been installed, you can configure a new SFTP connection.
- Retrieve your SFTP server IP and credentials from your Rhino Health Federated Computing Platform profile page. If you need a quick refresher on how to do that, you can follow this support article to help you: How can I find my SFTP Server Name?
- If you are successfully connected to your SFTP client, you should see two separate panels, one displaying your local machines file system and a second showing your Rhino Health client's filesystem.
- Using the STFP client to upload your data:
- On the local machine file system panel, navigate to the folder where your data is located.
- On the Rhino Health client file system panel, navigate to where you would like to place the data.
- Note: It is recommended that you create folders for your datasets to keep things organized.
- Drag the files from the local machine file system panel to the Rhino Health client file system panel to upload your data to the Rhino Health client server.
Common Commands when SFTP'ing Data
Use the following commands to create folders, navigate to different folders, view folder contents, and upload data:
Create a new folder called DIRECTORY_NAME within your Rhino Health client
sftp> mkdir DIRECTORY_NAME
Change to the specified directory, DIRECTORY_NAME within your Rhino Health client
sftp> cd DIRECTORY_NAME
List all files within the current directory on your Rhino Health client
sftp> ls
Upload the specified file FILE_NAME on your local machine to the current directory of your Rhino Health client
sftp> put FILE_NAME
Upload the folder and all of its contents on your local machine to the current directory of your Rhino Health client
sftp> put -r DIRECTORY_NAME
Exit out of the SFTP connection
sftp> exit
NOTE: If you have received an error or run into any issues throughout the process, please reach out to support@rhinohealth.com for more assistance.