Unable to create backup directory

WilcoOnline

Verified User
Joined
Oct 10, 2003
Messages
39
Hi There,

Have anybody a soluction for this problem?

Unable to create backup directory : /backup/wilcoonline : <b>Parent directory does not allow write, or one of the directories didn't allow search (execution) permission</b>
 
If you're a server administrator you should check the rights and permissions of your backup directory. If you're a site owner you need to check with your hosting company.

Jeff
 
Hi i'm the server administrator.

/backup have root permissions same as /home/backup

jlasman said:
If you're a server administrator you should check the rights and permissions of your backup directory. If you're a site owner you need to check with your hosting company.

Jeff
 
[root@amsterdam eliveldnet]# ls -ald /home/backup /backup
drw-r----- 4 root root 4096 Oct 3 00:10 /backup
drw-r----- 2 root root 4096 Aug 23 18:04 /home/backup

jlasman said:
Please post the output of this command:

ls -ald /home/backup /backup

Jeff
 
No one can enter a directory unless it has "x" permissions.

Both /backup and /home backup should be:

drwxr-xr-x

and the best way to do that is (as root):
Code:
cd /
chmod 755 /home/backup
chmod 755 /backup
Jeff
 
Back
Top