Proftpd
Rudolf Block
- webserver
hallo
ich wollt auf meinen root server (linux) einen ftp bereich anlegen/installieren (wie auch immer).
doch nun hab ich das problem:
[code=deutsch]Starting ftp server - Fatal: <Directory>: relative path not allowed in non-<Anonymous> sections on line 80 of '/etc/proftpd.conf'
startproc: exit status of parent of /usr/sbin/proftpd: 1[/code]
ich hab wohl in line 80 etwas falsch eingegeben, allerdings ist das die standart konfig nur auf standalone gestellt und maxclient,...
eingefügt.
hoffe ihr könnt mir weiterhelfen.
Meine Config:
ServerName "ProFTPD"
#ServerType standalone
ServerType standalone
DefaultServer on
<Global>
DefaultRoot ~ psacln
AllowOverwrite on
</Global>
DefaultTransferMode binary
UseFtpUsers on
Port 21
Umask 022
MaxInstances 30
#Following part of this config file were generate by PSA automatically
#Any changes in this part will be overwritten by next manipulation
#with Anonymous FTP feature in PSA control panel.
#Include directive should point to place where FTP Virtual Hosts configurations
#preserved
ScoreboardFile /var/run/proftpd/scoreboard
TransferLog /usr/local/psa/var/log/xferlog
#Change default group for new files and directories in vhosts dir to psacln
<Directory /srv/www/vhosts>
GroupOwner psacln
</Directory>
AuthPAM on
AuthPAMConfig proftpd
IdentLookups off
UseReverseDNS off
AuthGroupFile /etc/group
Include /etc/proftpd.include
TransferRate RETR 1000
MaxClientsPerHost 1
MaxClients 10
#</Anonymous>
Group nogroup
User ftp
UserAlias anonymous ftp
RequireValidShell off
MaxClients 8
DisplayLogin welcome.msg
DisplayFirstChdir .message
<Directory *>
<Limit WRITE>
DenyAll
</Limit>
</Directory>
</Anonymous>
Moin!
Starting ftp server - Fatal: <Directory>: relative path not allowed in non-<Anonymous> sections on line 80 of '/etc/proftpd.conf'
startproc: exit status of parent of /usr/sbin/proftpd: 1
ich hab wohl in line 80 etwas falsch eingegeben
Die Fehlermeldung sagt dir sogar exakt, WAS das ist, was stört.
Und nun bist du dran: Hast du verstanden, was die Fehlermeldung dir sagt? Hast du im Handbuch von ProFTPD nachgelesen, was die Option in Zeile 80 als Parameter verlangt?
- Sven Rautenberg
nicht wirklich -.-
ich hab mal durch gezählt und hab gehofft das ich so dahinter komme, hat aba nicht ganz geklappt^^
ich hab mir eine standart config von der homepage besorgt, die der server jetzt auch akzeptiert.
naja thx for help^^
sry für doppelpost
wie kann ich die ordner so freigeben das ich die über ftp://... einsehen und evtl. runterladen kann?
keine sorge es ist nichts illegales ;)
PS: ich hab kein handbuch zu dem prog und im online handbuch hab ich beim überfliegen nix gefunden
PS: ich hab kein handbuch zu dem prog und im online handbuch hab ich beim überfliegen nix gefunden
Wenn Du den Rest des Rootservers auch so aufgesetzt hast, dann mach Dich schonmal darauf gefaßt, dass Du bald virtuellen Besuch von Leuten bekommst, die genau derart nachlässig aufgesetzte Server suchen, um illegales Zeug zu verteilen.
Alexander
entschuldigt das ich schon wieder ein Thread eröffne aba ich hab den von gestern nicht mehr gefunden =(
naja zum problem:
ich hab einen proftpd server auf meinem root server.
er funktioniert auch, allerdings lande ich immer im leeren verzeichnis.
mein freund is musiker und ich wollte seine tracks auf meinem ftp ablegen weil er kaum webspace hat.
und nun bin ich seit stunden am lesen und probieren und bekomm es nicht hin das man bei betreten des FTPs n das verzeichnis kommt wo die tracks sind.
hier meine config:
ServerName "Debian"
ServerType standalone
DeferWelcome off
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 1200
DisplayLogin welcome.msg
DisplayFirstChdir .message
ListOptions "-l"
DenyFilter \*.*/
PersistentPasswd off
TLSEngine on
Quotas on
Ratios on
Port 21
MaxInstances 30
User nobody
Group nogroup
Umask 022 022
AllowOverwrite on
#DelayEngine off
<Anonymous ~ftp>
User ftp
Group nogroup
# We want clients to be able to login with "anonymous" as well as "ftp"
UserAlias anonymous ftp
# Cosmetic changes, all files belongs to ftp user
DirFakeUser on ftp
DirFakeGroup on ftp
RequireValidShell off
# Limit the maximum number of anonymous logins
MaxClients 10
# We want 'welcome.msg' displayed at login, and '.message' displayed
# in each newly chdired directory.
DisplayLogin welcome.msg
DisplayFirstChdir .message
# Limit WRITE everywhere in the anonymous chroot
<Directory *>
<Limit WRITE>
DenyAll
</Limit>
</Directory>
# Uncomment this if you're brave.
<Directory incoming>
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask 022 022
<Limit READ WRITE>
DenyAll
</Limit>
<Limit STOR>
AllowAll
</Limit>
</Directory>
</Anonymous>
wär echt super nett wenn ihr mir sagt wo der pfad hin geschrieben werden muss.
ich verzweifle daran -.-