(02-01-2010 01:16 AM)MartN Wrote: ftp zugriff haben automatisch alle system user + ispcp kunden.
Automatisch nicht... Dazu muss erst ein Modul bei AuthOrder eingetragen werden
/etc/proftpd/proftpd.conf:
Code:
<IfModule !mod_sql.c>
LoadModule mod_sql.c
AuthOrder mod_sql.c
</IfModule>
Ersetzen mit:
Code:
<IfModule !mod_sql.c>
LoadModule mod_sql.c
AuthOrder mod_sql.c mod_auth_unix.c
</IfModule>
/etc/ispcp/proftpd/proftpd.conf
Code:
<IfModule !mod_sql.c>
LoadModule mod_sql.c
AuthOrder mod_sql.c
</IfModule>
Ersetzen mit:
Code:
<IfModule !mod_sql.c>
LoadModule mod_sql.c
AuthOrder mod_sql.c mod_auth_unix.c
</IfModule>
Und schon haben alle Systemuser (ausser root) Zugriff.
Edit: Danach natürlich noch proftpd neustarten^^
# /etc/init.d/proftpd restart