Titel: Benutzer können nicht connecten!? Beitrag von: TomLottermann 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 Titel: Re: Benutzer können nicht connecten!? Beitrag von: stonki am 09. Juni 2006, 11:03:25 was sagt debug ?
Titel: Re: Benutzer können nicht connecten!? Beitrag von: TomLottermann am 09. Juni 2006, 13:24:16 Kannst du mir nochmal sagen, wie ich an die debug komme?
ToMiNaToR Titel: Re: Benutzer können nicht connecten!? Beitrag von: VolGas am 10. Juni 2006, 07:01:59 Siehe ->Support->FAQ->ProFTPD startet nicht... (http://www.proftpd.de/FAQ.15.0.html)
mfg. VolGas Titel: Re: Benutzer können nicht connecten!? Beitrag von: TomLottermann 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 Titel: Re: Benutzer können nicht connecten!? Beitrag von: stonki am 12. Juni 2006, 11:17:52 Was hat das zu bedeuten? steht im gleichen abschnitt der faq |