During the AS cluster upgrade, an error occurs stating - 10017 : Could not load image image tar /opt/UipathAutomationSuite/tmp/sf_installer/readiness-images/images.tar
Issue:
During the AS cluster upgrade, an error occurs stating - 10017 : Could not load image image tar /opt/UipathAutomationSuite/tmp/sf_installer/readiness-images/images.tar
Resolution:
Check Disk Space: Use the df command to monitor the available disk space on your system:
- df -h - This will display information about the available disk space in the specified directory.
df -h /opt/UiPathAutomationSuite
Output
In this output, the available storage is more ample; however, in case of errors, it would indicate less.
- du -h - This command displays the disk utilization of the specified directory and subdirectories, excluding files. If larger-sized directories are identified, further investigation can be conducted to identify items that can be removed.
Run below command:
du -h --max-depth=1 /opt/UiPathAutomationSuite
Output
In this example, there are only a few items; however, within the impacted cluster, there might be items that can be easily removed or moved to any other directory.
- To list the files in descending order, run the below command:
OutputIn this example, a file of approximately 2MB (1884kb to be exact) has been deliberately placed, treated as the offender, and will be removed.
- Run below command to remove the offender file:
- Then verify if the file is removed by running the same command again (or even a simple ll would show it):
ls -l --block-size=K | sort -k5,5hr
Output