log(s) problem

snaaps

Verified User
Joined
Jan 29, 2005
Messages
227
Location
Netherlands
Hello,

one 1 off our servers the apache logs /var/log/http/domains/domain.com.log are not updated anymore, last update is from 2009...
I have checked the permisions of the directory and files and the are ok.

What can be the problem here?

Edit:
When i take a look to /usr/local/directadmin/data/users/username/httpd.conf i see the folling lines:
PHP:
SuexecUserGroup username username
        #CustomLog /var/log/httpd/domains/domain.com.bytes bytes
        #CustomLog /var/log/httpd/domains/domain.com.log combined
        #ErrorLog /var/log/httpd/domains/domain.com.error.log

Maby this must be:
PHP:
SuexecUserGroup username username
        CustomLog /var/log/httpd/domains/domain.com.bytes bytes
        CustomLog /var/log/httpd/domains/domain.com.log combined
        #ErrorLog /var/log/httpd/domains/domain.com.error.log

Is that correct, and how can i change the template for these?
 
Last edited:
Yes. That is correct. You will to execute:
Code:
cd /usr/local/directadmin/custombuild
./build update
./build rewrite_confs
 
Back
Top