Hallo zusammen
ich habe suse 9.1 und XAMPP für Linux 1.4.13 installiert.
Zuerst mal was funktioniert.
Ich kann mich als systemuser bei ProFTPD anmelden
Ich kann mich als nobody bei ProFTPD anmelden (mit passwort das bei lampp gesetzt wrude)
Hier mein Wunsch
Ich würde gerne per AuthUserFile Virtuelle User einrichten. Habe bereits das ftpasswd script heruntergeladen und in /opt/lamp/etc plaziert. Dies funktioniert bestens.
Hier das file /opt/lampp/etc/ftpd.group
proftpd:x:501:test,login1
Und das file /opt/lampp/etc/ftpd.passwd
test:$1$1yg8Ua6D$7/b3bt7zCk4AVGYTa1123/:1001:501::/opt/lampp/htdocs/test:/bin/false
Nun zum eigentlichen Problem. Was muss in der Conifg stehen, damit der Server 1. die datei ftpd.group und ftpd.passwd liest und 2. dass er Virtuelle Directorys zuteilt?
hier meine config
# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use. It establishes a single server
# and a single anonymous login. It assumes that you have a user/group
# "nobody" and "ftp" for normal operation and anon.
ServerName "ProFTPD"
ServerType standalone
DefaultServer on
# Port 21 is the standard FTP port.
Port 21
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances 30
# Set the user and group that the server normally runs at.
User nobody
#Group nogroup
# Normally, we want files to be overwriteable.
<Directory /opt/lampp/htdocs/*>
AllowOverwrite on
</Directory>
# only for the web servers content
DefaultRoot /opt/lampp/htdocs
# nobody gets the password "lampp"
# commented out by lampp security
#UserPassword nobody wRPBu8u4YP0CY
UserPassword nobody Vd5fs.hVuALg.
# nobody is no normal user so we have to allow users with no real shell
RequireValidShell off
# nobody may be in /etc/ftpusers so we also have to ignore this file
UseFtpUsers off
und noch pfoftpd -l
Compiled-in modules:
mod_core.c
mod_xfer.c
mod_auth_unix.c
mod_auth_file.c
mod_auth.c
mod_ls.c
mod_log.c
mod_site.c
mod_sql.c
mod_sql_mysql.c
mod_tls.c
mod_cap.c
Danke für die Hilfe
:oops: