www.ProFTPD.de

ProFTPD => ProFTPD - Deutsch => Thema gestartet von: mcneill am 02. August 2006, 11:50:10



Titel: Upload Problem
Beitrag von: mcneill am 02. August 2006, 11:50:10
Hallo,

ich habe folgendes Problem. Ich habe bei einem Anbieter kostenlosen Webspace und habe dort ein Statsprogramm laufen. Dazu habe ich einen Gameserver. Das Statsprogramm muss sich eine Datei von dem Gameserver auf den Webspace laden. ProFTPD bringt dazu folgende Fehlermeldung:

USER ****: Login successful.
mod_cap/1.0: cap_set_proc failed: Operation not permitted
mod_cap/1.0: attempt to configure capabilities failed, reverting to normal operation
mod_delay/0.4: delaying for 39204 usecs
FTP session closed.

Ich habe jetzt wirklich schon sehr lange gesucht und nichts gefunden.

# 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                      "xxx"
ServerType                      standalone
DefaultServer                   on
ServerIdent                     on "xxx"
ServerAdmin                     xxx
UseReverseDNS   off
IdentLookups    off

# 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

# deny root login
RootLogin                       off

# homedir
DefaultRoot                     ~

# FXP
AllowForeignAddress             off

# Resuming
AllowStoreRestart               on
AllowRetrieveRestart            on

# Bandwidth
TransferRate                    RETR    1048576
TransferRate                    STOR    1048576

# Maxclients
MaxClients                      50
MaxClientsPerUser               2
MaxClientsPerHost               2
MaxLoginAttempts                3

# Timeouts
TimeoutNoTransfer               600
TimeoutIdle                     600

# Logging
SystemLog                       /var/log/proftpd_system.log
ExtendedLog                     /var/log/proftpd_read.log READ
ExtendedLog                     /var/log/proftpd_write.log WRITE
ExtendedLog                     /var/log/proftpd_auth.log AUTH

# no symlinks
ShowSymlinks                    off

# global settings
<Directory />
    AllowOverride               on
    AllowOverwrite              on
    HideUser                    root
    HideGroup                   root
    ListOptions                 "-a"
    <Limit SITE_CHMOD>
        Allow from              all
        </Limit>
</Directory>


Titel: Re: Upload Problem
Beitrag von: mcneill am 02. August 2006, 13:37:28
Und das ist das proftpd.syslog vom Gameserver:

USER xxx: Login successful
Preparing to chroot to directory 'xxx'
error setting IPV6_V6ONLY: Protocol not available


Titel: Re: Upload Problem
Beitrag von: VolGas am 03. August 2006, 10:07:14
Hallo,

ich hatte gehofft, daß Dir jemand anderes antworten würde, der sich damit
(besser) auskennt als ich. Nun ja...

Hier scheint es ein generelles Problem mit dem Kernel zu geben, denn
"mod_cap" versucht, die "Capabilities" des Systems zu nutzen - und scheitert.

Ich kenne mich damit zwar noch so gut wie gar nicht aus, aber wenn's stört,
dann schalte es einfach einmal aus: "CapabilitiesEngine off" und versuche
es einfach einmal ohne...

Das ist zwar eine recht plumbe Vorgehensweise, aber vielleicht klappt es ja.
Viel Erfolg!

mfg.
  VolGas


Titel: Re: Upload Problem
Beitrag von: mcneill am 03. August 2006, 10:52:06
Hallo,

danke für den Tip. Aber es war ein simples Problem im Script und dem Pfad zu der Datei.