On 05/14/2014 07:45 AM, Maddox Flower wrote:
> Looking into /etc/passwd, I am seeing users such as
> apache:x:48:48:Apache:/var/www:/sbin/nologin
> abo-admin:x:10000:503::/var/www/vhosts/<my_domain>:/bin/false

I would guess then that the web server is running as "apache" here.

> $> ls -la /var/spool
> ...
> drwxrwx---  3 abo-admin psaserv 4096 14. Mai 00:42 dl

Everything else is correct. But the spool directory needs to be writable
by apache.

I would guess a:

  chgrp -r apache /var/spool/dl
  chmod g+ws /var/spool/dl

would do the trick, but if you want to know exactly under which user
apache is running at, run something like:

  ps axuw | grep apache

to know the user exactly.



Reply via email to