automation-suite
2023.10
false
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。 新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
UiPath logo, featuring letters U and I in white

Linux の Automation Suite のインストール ガイド

最終更新日時 2025年12月4日

NFS サーバー上の古い差分バックアップをクリーンアップする方法

説明

NFS server disk usage can increase unexpectedly when old differential backup directories accumulate over time. This issue occurs when outdated backup data is not removed regularly, resulting in excessive disk space usage and potential storage issues.

解決策

To address the issue, identify and remove outdated differential backup directories:
  1. Go to the differential backup directory path, as shown in the following example:
    cd NFS_MOUNT/objectstore/backup/s3/diff
    cd NFS_MOUNT/objectstore/backup/s3/diff
    
  2. List directories older than a specific epoch timestamp:
    epoch=<timestamp-from-last-backup-you-want-to-keep>; for i in $(ls -1); do if [[ $i -lt $epoch ]]; then echo $i; fi; doneepoch=<timestamp-from-last-backup-you-want-to-keep>; for i in $(ls -1); do if [[ $i -lt $epoch ]]; then echo $i; fi; done
    Replace <timestamp-from-last-backup-you-want-to-keep> with the epoch timestamp of the last backup you want to keep.

    This command lists all directories older than that timestamp.

  3. After verifying the output, delete the old directories:
    epoch=<timestamp-from-last-backup-you-want-to-keep>; for i in $(ls -1); do if [[ $i -lt $epoch ]]; then rm -rf $i; fi; done
    epoch=<timestamp-from-last-backup-you-want-to-keep>; for i in $(ls -1); do if [[ $i -lt $epoch ]]; then rm -rf $i; fi; done
    
Important: Verify the timestamp before deleting any directories. Deleted directories cannot be recovered.
  • 説明
  • 解決策

このページは役に立ちましたか?

サポートを受ける
RPA について学ぶ - オートメーション コース
UiPath コミュニティ フォーラム
Uipath Logo
信頼とセキュリティ
© 2005-2025 UiPath. All rights reserved.