An error occurred during the backup. Permission denied.

ciaraind

New member
Joined
Feb 10, 2022
Messages
1
After enable allow_backup_encryption in Admin Backup/transfer my backups are not complete and shown to me this error.

An error occurred during the backup​

Encryption of /home/admin/admin_backups/mybackup/admin.root.admin.tar.gz has failed: Permission denied.
Error while encrypting /home/admin/admin_backups/mybackup/admin.root.admin.tar.gz:
File successfully removed

my directadmin version is 1.63.3

Do you have a solution to this problem?
 
/home/admin/admin_backups/mybackup/

Looks like you added a custom directory.

Did you look to see if the "mybackup" directory is owned by admin

Code:
ls -al /home/admin/admin_backups/mybackup
if not
Code:
chown admin:admin /home/admin/admin_backups/mybackup
 
Back
Top