Documentation - How to send files to the DataSeer FTP server
- Hostname: ftp.dataseer.ai
Using Filezilla
-
Enter the DataSeer FTP Hostname & your FTP login details
- Host: ftp.dataseer.ai
- Username: dataseer (replace it with your username)
- Password: *******
-
Click on "Quickconnect"
The following information should appear in the GUI
Status: Resolving address of dev.dataseer.ai
Status: Connecting to 139.162.174.64:21...
Status: Connection established, waiting for welcome message...
Status: Initializing TLS...
Status: Verifying certificate...
Status: TLS connection established.
Status: Logged in
Status: Retrieving directory listing...
Status: Directory listing of "/" successful
- Go to the desired folder (‘Remote Site’ section)
- By default, an ‘upload’ folder is available
- Folders can be created if necessary
The following information should appear in the GUI
Status: Retrieving directory listing of "/upload"...
Status: Directory listing of "/upload" successful
- Select the files/folders you wish to send to DataSeer (‘Local Site’ section)
- Drag & drop or double-click can be used to sent a file/folder
- The files/folders sent will appear in the ‘Remote Site’ section
The following information should appear in the GUI
Status: Starting upload of /home/user/test.txt
Status: File transfer successful, transferred 6 B in 1 second
Status: Retrieving directory listing of "/upload"...
Status: Directory listing of "/upload" successful
Files & folders can be uploaded to the DataSeer FTP server using the following cURL command line :
#------------------------------------------------------------------------------------------------
# Upload the file ‘/path/to/my/file.txt’ (‘Local Site’) to the ‘/upload/’ folder (‘Remote Site’).
#------------------------------------------------------------------------------------------------
# Replace USER & PASSWORD with your credentials
# Replace "/path/to/my/file.txt" with the path to be uploaded
#------------------------------------------------------------------------------------------------
curl --ssl-reqd --tlsv1.3 --insecure --user USER:PASSWORD -T "/path/to/my/file.txt" --ftp-pasv --progress-bar ftp://ftp.dataseer.ai:21/upload/
Argument | Description | Required |
---|---|---|
--ssl-reqd --tlsv1.3 --insecure |
SSL/TLS arguments for secure connection | Yes |
--user USER:PASSWORD |
User credentials used for authentication | Yes |
-T "/path/to/my/file.txt" |
Path to the file to upload | Yes |
--ftp-pasv |
Enable FTP passive mode | Yes |
--progress-bar |
Display upload progress bar | No |
ftp://ftp.dataseer.ai:21/upload/ |
FTP server address and target folder | Yes |