OCI Data Transfer Appliance Not Recognizing Files During Bulk Upload Process
I'm stuck on something that should probably be simple. I'm currently trying to use the OCI Data Transfer Appliance to migrate a large dataset from an on-premise environment to Oracle Cloud Infrastructure. I've configured the appliance as per the guidelines and successfully completed the initial setup. However, when I attempt to bulk upload data, I keep working with the behavior: `File not found: <file_path>` despite the files being present on the appliance. I have made sure that the files are in the correct format and size limits specified in the official documentation, and I have verified the integrity of the files locally before transfer. I'm using the latest version of the Data Transfer Appliance software (version 3.2.1). Here's a snippet of the command I am using to initiate the upload: ```bash oci data-transfer appliance upload --appliance-id=my-appliance-id --files=/path/to/local/files/* ``` I've also checked the permissions for the files and directories, and they seem to be set correctly. The appliance has enough storage space left (over 1TB available), and I confirmed that the network settings are correctly configured to allow communication with OCI. Can someone guide to troubleshoot this scenario? What additional steps can I take to ensure that the files are recognized during the upload process? For context: I'm using Bash on Linux. Thanks in advance!