PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : proftpd



robiotor
16.12.02, 20:09
hier ich kämpfe :) ja genau du liest richtig, ich kämpfe mit dem proftpd. ich weis ned was ich da genau mache. mal kann ich dateien hochladen mal ned. überschreiben habe ich noch nie hinbekommen.

würde mir mal jemand ein sehr gutes tutorial geben oder ist jemand bereit mir da ein wenig zu helfen.

ich will ein user einrichten der uploaden/downloaden kann, überschreiben kann chmod setzetn kann, unterverzeichnisse erstellen kann.

bernie
16.12.02, 20:23
na dann poste mal deine proftpd.conf ;)

Ciao, Bernie

robiotor
16.12.02, 20:33
so schaut sie im mom aus

# 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 "Willkomen auf meinem FTP Server"
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 under which the server will run.
User nobody
Group nogroup


<VirtualHost robiotor.no-ip.com>
DefaultRoot ~
ServerAdmin robiotor@gmx.net
ServerName "robiotor.no-ip.com"
Group test
User test
<Directory /usr/local/apache/htdocs>
</Directory>
</VirtualHost>

pibi
17.12.02, 07:55
@robiotor:

Warum denn am Anfang so kompliziert mit virtual-hosts? Fang doch mal mit einer ganz einfachen Konfiguration an, zB. so:
ServerName "powered by Linux"
ServerType inetd
ServerAdmin ftpadm@localhost
DeferWelcome off
DefaultServer on
AuthPAM on
AuthPAMConfig proftpd
Port 21
Umask 022
User nobody
Group nogroup

<Directory /*>
AllowOverwrite on
HiddenStor on
#HideNoAccess on
</Directory>

DenyFilter "%"
MaxInstances 30
IdentLookups off
ScoreboardPath /var/run/proftpd
TransferLog /var/log/proftpd.xfer
LogFormat default "%h %l %u %t \"%r\" %s %b"
LogFormat auth "%v [%P] %h %t \"%r\" %s"
LogFormat write "%h %l %u %t \"%r\" %s %b"
ExtendedLog /var/log/proftpd.access_log WRITE,READ write
ExtendedLog /var/log/proftpd.auth_log AUTH auth
ExtendedLog /var/log/proftpd.paranoid_log ALL default
Mehr brauchst Du am Anfang nicht. Wenn alles laeuft, kannst Du dann noch den anonymous Access dazunehmen und noch spaeter evtl. virtuelle Hosts.

Gruss Pit.

Discipulus
17.12.02, 10:16
Leider kann ich dir auch nicht helfen. Aber an einem guten Tutorial wäre ich auch interessiert.

[LF]maro
17.12.02, 14:42
HI,

Tutorial ??? dann schau doch mal HIER (http://www.linux-freak.org)


Gruß
maro