04-03-2022
This commit is contained in:
@@ -183,6 +183,8 @@ Ne marche pas !!
|
||||
|
||||
https://support.plesk.com/hc/en-us/articles/360003876473-How-to-clean-temporary-Plesk-files-on-a-Linux-server
|
||||
|
||||
https://support.plesk.com/hc/en-us/articles/115002557954-How-to-remove-Plesk-backup-files-and-their-logs?source=search
|
||||
|
||||
```bash
|
||||
root@localhost:~# df -h /tmp
|
||||
Filesystem Size Used Avail Use% Mounted on
|
||||
@@ -193,10 +195,25 @@ Filesystem Size Used Avail Use% Mounted on
|
||||
|
||||
```
|
||||
|
||||
Remove backup logfiles:
|
||||
|
||||
```bash
|
||||
# status change XX*24 hours ago.
|
||||
|
||||
find /var/log/plesk/PMM/ -name 'backup*' -type d -ctime +XX -exec rm -rf {} +;
|
||||
```
|
||||
|
||||
Remove backup files:
|
||||
|
||||
```bash
|
||||
find /var/lib/psa/dumps -name 'backup*' -type f -ctime +XX -exec rm -rf {} +;
|
||||
```
|
||||
|
||||
Allocate additional disk space or remove unnecessary files in `/var/lib/psa/dumps`.
|
||||
|
||||
```bash
|
||||
# find / -type f -size +200M -exec du -h {} + 2>/dev/null | sort -r -h
|
||||
find / -type f -size +200M -exec du -h {} + 2>/dev/null | sort -r -h
|
||||
|
||||
5,0G /var/lib/psa/dumps/domains/sur-le-sentier.fr/backup_user-data_2108080143.tgz
|
||||
2,5G /var/www/vhosts/sur-le-sentier.fr/.wp-toolkit/snapshots/instance_files_2_52x7sld.zip
|
||||
1,3G /var/lib/psa/dumps/domains/maboiteverte.fr/backup_user-data_2110310443.tgz
|
||||
|
||||
Reference in New Issue
Block a user