group 1000 ??

duke28

Verified User
Joined
Oct 30, 2005
Messages
302
Location
Montreal - Canada
why when i look in /usr/local/directadmin/customapache

many files is in group 1000:1000
i think directadmin use the group 1000 sometimes

and the problem is because i already have a client with group 1000.. so its cause a little problem with space used quota..

can you explain to me what about group 1000 ??
we have 6 servers with directadmin.. and all is same..

is it ok for chown root:root /usr/local/directadmin/customapache -R ????
 
Last edited:
You can change the permissions. I would chown diradmin:diradmin for consistency however root:root will also work.
 
I'm still a bit confused.

What do you mean by group 1000? Do you mean you see 1000 in the directory entries?

If not, what do you mean?

Jeff
 
I mean this :

[root@box3 lists]# cd /usr/local/directadmin/customapache/
[root@box3 customapache]# ls -ln
total 56696
-rw-r--r-- 1 0 0 2468567 Oct 28 2004 apache_1.3.33.tar.gz
drwxr-xr-x 8 0 0 4096 Feb 17 17:21 apache_1.3.34
-rw-r--r-- 1 0 0 2468056 Oct 17 10:21 apache_1.3.34.tar.gz
-rwxr-xr-x 1 0 0 53739 Feb 8 12:44 build
-rwxr-xr-x 1 0 0 821 Feb 17 17:18 configure.apache_ssl
-rwxr-xr-x 1 0 0 638 Feb 17 17:26 configure.php
drwxrwxrwx 8 1000 1000 4096 Nov 13 2004 curl-7.12.2
-rw-r--r-- 1 1000 1000 1563545 Oct 18 2004 curl-7.12.2.tar.gz
-rw-r--r-- 1 0 0 2165810 Feb 1 2005 curl-7.13.0.tar.gz
-rw-r--r-- 1 1000 1000 1751006 Oct 13 04:21 curl-7.15.0.tar.gz
drwxrwxrwx 8 1000 1000 4096 Feb 17 17:22 curl-7.15.1
-rw-r--r-- 1 0 0 1769992 Dec 6 18:20 curl-7.15.1.tar.gz
-rw-r--r-- 1 0 0 10931622 Jun 19 2003 fp50.linux.tar.gz
-rw-r--r-- 1 0 0 32134 Jun 17 2003 fp-patch-apache_1.3.22
-rw-r--r-- 1 0 0 420 Jun 17 2003 fp-patch-suexec

and other lines with the group 1000

its strange, because its appears on 6 servers...
and when i get a real client with the group 1000 its false the quota usage disk of this user..

sorry for my english
 
Last edited:
Thanks.

Evidently DA is uploading files created with user/group 1000. That's really a linux issue, but DA could fix it by chowning all files to root:root, so I'll bring it to their attention.

But you shouldn't see 0 0 either; you should see root root.

Please help us by posting your OS Distribution information.

Thanks.

Jeff
 
Hello,

When "tar" extracts those files, it will also extract the UID/GID numbers that are stored inside from the remote systems that compressed them. You can just chown them:
Code:
cd /usr/local/directadmin/customapache
chown -R root:root *
I'll get the build script to do this automatically.

John
 
Back
Top