www.ProFTPD.de
13. März 2007, 21:09:35 *
Willkommen Gast. Bitte einloggen oder registrieren.
Haben Sie Ihre Aktivierungs E-Mail übersehen?

Einloggen mit Benutzername, Passwort und Sitzungslänge
News: SMF - Neu installiert!
 
   Übersicht   Hilfe Suche Login Registrieren  
Seiten: [1]   Nach unten
  Drucken  
Autor Thema: Benutzer können nicht connecten!?  (Gelesen 406 mal)
0 Mitglieder und 1 Gast betrachten dieses Thema.
TomLottermann
ProFTPD
*
Offline Offline

Beiträge: 3


Profil anzeigen E-Mail
« am: 08. Juni 2006, 20:16:35 »

hallo!
Hab meinen PROFTPD eingerichtet (Debian sarge) und kann auch mit dieser config über meinen account connecten, aber andere user, die auch in der gruppe sind, für die ich bestimmt hab, dass die zugreifen kann, kommen nicht drauf...
Meine Config:
Code:
# 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 "zion" # den eigenen Server angeben
ServerType standalone
DeferWelcome off

ShowSymlinks on
MultilineRFC2228 on
DefaultServer on
AllowOverwrite on

TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 1200

DisplayLogin welcome.msg
DisplayFirstChdir .message
ListOptions "-l"

DenyFilter \*.*/

# Uncomment this if you are using NIS or LDAP to retrieve passwords:
#PersistentPasswd off

# Port 21 is the standard FTP port.
Port 21

# 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 /*>
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask 022 022

AllowOverwrite on
</Directory>

# Hier meine Ergänzungen

# chroot für alle User der Gruppe htdocs
DefaultRoot /share/htdocs htdocs

# Login nur von Mitgliedern der Gruppe ftpuser erlauben
<Limit LOGIN>
DenyGroup !htdocs
</Limit>

# Root-Login verbieten und gültige Shell verlangen (in /etc/shells)
<Global>
RootLogin off
RequireValidShell on
</Global>

# Speed erhoehen
UseReverseDNS off
IdentLookups off

# Logging Formate
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"

# Logging aktivieren

# alle logins
ExtendedLog /var/log/ftp_auth.log AUTH auth

# file/dir Zugriff
ExtendedLog /var/log/ftp_access.log WRITE,READ write

# für paranoide (vorsicht, erzeugt grosse Logfiles)
#ExtendedLog /var/log/ftp_paranoid.log ALL default

# Uncomment this if you would use TLS module:
TLSEngine on
TLSLog /var/log/tls.log
TLSProtocol SSLv23
TLSOptions NoCertRequest
TLSRSACertificateFile /etc/ssl/certs/proftpd.cert.pem
TLSRSACertificateKeyFile /etc/ssl/certs/proftpd.key.pem
TLSVerifyClient off
Gespeichert
stonki
Administrator
ProFTPD
*****
Offline Offline

Beiträge: 1853


15318939
Profil anzeigen WWW E-Mail
« Antwort #1 am: 09. Juni 2006, 11:03:25 »

was sagt debug ?
Gespeichert

www.stonki.de:    the more I see, the more I know.......
www.proftpd.de:   Deutsche ProFTPD Dokumentation
www.krename.net:  Der Batch Renamer für KDE
www.kbarcode.net: Die Barcode Solution für KDE
TomLottermann
ProFTPD
*
Offline Offline

Beiträge: 3


Profil anzeigen E-Mail
« Antwort #2 am: 09. Juni 2006, 13:24:16 »

Kannst du mir nochmal sagen, wie ich an die debug komme?

ToMiNaToR
Gespeichert
VolGas
Moderator
ProFTPD
*****
Offline Offline

Beiträge: 771



Profil anzeigen
« Antwort #3 am: 10. Juni 2006, 07:01:59 »

Siehe ->Support->FAQ->ProFTPD startet nicht...

mfg.
  VolGas
Gespeichert
TomLottermann
ProFTPD
*
Offline Offline

Beiträge: 3


Profil anzeigen E-Mail
« Antwort #4 am: 10. Juni 2006, 16:54:32 »

zion:/share/htdocs/phpmyadmin# proftpd -n -d5
 - mod_tls/2.0.7: using OpenSSL 0.9.7e 25 Oct 2004
 - parsing '/etc/proftpd.conf' configuration
 - Compiling deny regex '\*.*/'.
 - Allocated deny regex at location 0x8118d18.
 - <Directory /*>: adding section for resolved path '/*'
localhost.localdomain -
localhost.localdomain - Config for zion:
localhost.localdomain - Limit
localhost.localdomain -  DenyGroup
localhost.localdomain - /*
localhost.localdomain -  Umask
localhost.localdomain -  DirUmask
localhost.localdomain -  AllowOverwrite
localhost.localdomain -  ShowSymlinks
localhost.localdomain -  DisplayLogin
localhost.localdomain -  DisplayFirstChdir
localhost.localdomain -  ListOptions
localhost.localdomain -  DenyFilter
localhost.localdomain -  RootLogin
localhost.localdomain -  RequireValidShell
localhost.localdomain - DeferWelcome
localhost.localdomain - ShowSymlinks
localhost.localdomain - DefaultServer
localhost.localdomain - AllowOverwrite
localhost.localdomain - TimeoutNoTransfer
localhost.localdomain - TimeoutStalled
localhost.localdomain - TimeoutIdle
localhost.localdomain - DisplayLogin
localhost.localdomain - DisplayFirstChdir
localhost.localdomain - ListOptions
localhost.localdomain - DenyFilter
localhost.localdomain - UserID
localhost.localdomain - UserName
localhost.localdomain - GroupID
localhost.localdomain - GroupName
localhost.localdomain - DefaultRoot
localhost.localdomain - IdentLookups
localhost.localdomain - ExtendedLog
localhost.localdomain - ExtendedLog
localhost.localdomain - TLSEngine
localhost.localdomain - TLSLog
localhost.localdomain - TLSOptions
localhost.localdomain - TLSRSACertificateFile
localhost.localdomain - TLSRSACertificateKeyFile
localhost.localdomain - TLSVerifyClient
localhost.localdomain - RootLogin
localhost.localdomain - RequireValidShell
localhost.localdomain - mod_tls/2.0.7: passphrase locked into memory
localhost.localdomain - deleting existing scoreboard '/var/run/proftpd/proftpd.scoreboard'
localhost.localdomain - Failed binding to 0.0.0.0, port 21: Address already in use
localhost.localdomain - Check the ServerType directive to ensure you are configured correctly.
localhost.localdomain - mod_tls/2.0.7: scrubbing all passphrases from memory


Was hat das zu bedeuten?

ToMiNaToR
Gespeichert
stonki
Administrator
ProFTPD
*****
Offline Offline

Beiträge: 1853


15318939
Profil anzeigen WWW E-Mail
« Antwort #5 am: 12. Juni 2006, 11:17:52 »

Was hat das zu bedeuten?

steht im gleichen abschnitt der faq
Gespeichert

www.stonki.de:    the more I see, the more I know.......
www.proftpd.de:   Deutsche ProFTPD Dokumentation
www.krename.net:  Der Batch Renamer für KDE
www.kbarcode.net: Die Barcode Solution für KDE
Seiten: [1]   Nach oben
  Drucken  
 
Gehe zu:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.2 | SMF © 2006-2007, Simple Machines LLC Prüfe XHTML 1.0 Prüfe CSS
Seite erstellt in 0.062 Sekunden mit 16 Zugriffen.