Error Creating Domain in newly installed DA VPS/Server

albatroz

Verified User
Joined
Mar 13, 2004
Messages
336
Location
Peru
Just got a new VPS with Directadmin, however when I try to create a new account (after putting myself on Reseller Mode) I get the following errors:

Any ideas to solve the problem?

Error Creating /home/conedured/domains
Parent directory does not allow write, or one of the directories didn't allow search (execution) permission

Unable to create directory /home/conedured/domains/concursoeducared.org,
Parent directory does not allow write, or one of the directories didn't allow search (execution) permission

Error creating /home/conedured/domains/concursoeducared.org/public_html
Parent directory does not allow write, or one of the directories didn't allow search (execution) permission

Error creating /home/conedured/domains/concursoeducared.org/public_html/cgi-bin
Parent directory does not allow write, or one of the directories didn't allow search (execution) permission

Error creating /home/conedured/domains/concursoeducared.org/public_html/cgi-bin/.htaccess
Unable to open /home/conedured/domains/concursoeducared.org/public_html/cgi-bin/.htaccess for writing

Error creating /home/conedured/domains/concursoeducared.org/private_html
Parent directory does not allow write, or one of the directories didn't allow search (execution) permission

Unable to create directory /home/conedured/domains/concursoeducared.org/public_ftp,
Parent directory does not allow write, or one of the directories didn't allow search (execution) permission

Unable to create directory /home/conedured/domains/concursoeducared.org/public_ftp/incoming,
Parent directory does not allow write, or one of the directories didn't allow search (execution) permission
 
Does /home have some weird permissions set on it?

Type:

chmod 755 /home

Either that directory or /home/conedured does not have the right permissions.

Type the following on your server and show what it displays:
Code:
ls -lad /home
 
It seems that it is creating the domain with root as the owner of the folders

[root@epsilon home]# ls -al
total 28
drwxr-xr-x 7 root root 4096 Jan 23 09:38 .
drwxr-xr-x 21 root root 4096 Dec 30 13:20 ..
drwx--x--x 5 admin admin 4096 Dec 16 11:42 admin
drwx------ 3 root root 4096 Jan 23 09:38 conedured
drwxr-xr-x 2 root root 4096 Nov 11 15:00 ftp
drwxrwxrwt 2 root root 4096 Jan 23 00:10 tmp
drwx------ 2 webadmin webadmin 4096 Dec 14 17:09 webadmin
 
You probably should contact directadmin support it shouldnt be doing that :)
 
Back
Top