www.ProFTPD.de
13. März 2007, 19:47:13 *
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: Proftpd läuft, kann aber nicht mehr connecten  (Gelesen 724 mal)
0 Mitglieder und 1 Gast betrachten dieses Thema.
Xtreame
ProFTPD
*
Offline Offline

Beiträge: 5


Profil anzeigen
« am: 07. August 2004, 22:17:01 »

das problem der FTP Server läuft eindeutig, kann aber nicht connecten
Code:

[R] Connecting to 83.xxx.xx.xxx -> IP=83.xxx.xx.xxx PORT=2121
[R] Connection failed (Connection failed)
[R] Delaying for 120 seconds before reconnect attempt #1


Das System:

Debian Woody Stable
MYSQL Version      : 3.23.49
APACHE Version     : 1.3.26
PROFTPD Version    : 1.2.10rc3
MyFTPAdmin Version : 0.6

Compiliert habe ich PROFTPD mit:
./configure --with-modules=mod_ifsession:mod_rewrite:mod_exec:mod_ratio:mod_sql:mod_sql_mysql --with-includes=/usr/include/mysql --with-libraries=/usr/lib/mysql

Die proftpd.conf datei:
Code:

# '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   "- Welcome to My ProFTPD Server -"
ServerType standalone
DefaultServer on

Port 2121
Umask 022
MaxInstances 30

UseReverseDNS off
IdentLookups off

User ftpuser
Group ftpgroup

<Global>
AllowRetrieveRestart on
AllowStoreRestart on
AllowOverwrite on
</Global>

SQLAuthTypes Crypt
SQLAuthenticate users* groups*
SQLConnectInfo ftp@localhost ftpuser 14683509
SQLUserInfo users username passwd NULL NULL homedir NULL
SQLGroupInfo groups groupname id username
SQLUserWhereClause "valid = 1"
SQLDefaultGID 100
SQLDefaultUID 500
SQLHomedirOnDemand off
RequireValidShell off
SQLLog PASS updatelogin
SQLNamedQuery updatelogin UPDATE "count=count+1, lastlogin=NOW() WHERE username = '%u'" users
SQLLOGFILE /var/log/proftpd.sql.log
debugLevel 6
Serverlog /var/log/proftpd.debug.log

### Log trafic (STOR, RETR commands)
SQLLog STOR,RETR,ERR_STOR,ERR_RETR logtrafic
SQLNamedQuery logtrafic FREEFORM "INSERT INTO history (username, filename, transfertype, transfersize, transferhost, transfertime, transferdate) VALUES('%u', '%F', '%m', %b, '%a', '%T', NOW())"

### Log user error events (ERR_* commands)
SQLLog ERR_* logevents
SQLNamedQuery logevents FREEFORM "INSERT INTO userevents (username, eventtype, description, eventdate) VALUES ('%u', '%m', '%r', NOW())"

<Directory /*>
AllowOverwrite off
<Limit WRITE>
DenyAll
AllowGroup admin
</Limit>
</Directory>


<Directory /home/ftpuser/files/data/>
<Limit READ DIRS>
DenyAll
AllowGroup ftpgroup
</Limit>
<Limit WRITE>
AllowGroup ftpgroup
</Limit>
</Directory>


DefaultRoot /home/ftpuser/files/data
AllowOverwrite on
RootLogin off


nach eingabe des /usr/local/sbin/proftpd -c /usr/local/etc/proftpd.conf -d 4 -n Befehls
kam folgende Ausgabe:
Code:

 - parsing '/usr/local/etc/proftpd.conf' configuration
 - SQLAuthenticate: use of * in SQLAuthenticate has been deprecated.  Use AuthOrder for setting authoritativeness
 - SQLAuthenticate: use of * in SQLAuthenticate has been deprecated.  Use AuthOrder for setting authoritativeness
 - <Directory /*>: adding section for resolved path '/*'
 - <Directory /home/ftpuser/files/data/Movies>: adding section for resolved path '/home/ftpuser/files/data/Movies'
 - <Directory /home/ftpuser/files/data/Music>: adding section for resolved path '/home/ftpuser/files/data/Music'
 - <Directory /home/ftpuser/files/data/Games>: adding section for resolved path '/home/ftpuser/files/data/Games'
 - ProFTPD 1.2.10rc3 (devel) (built Sat Aug 7 12:12:35 CEST 2004) standalone mode STARTUP
 - ProFTPD terminating (signal 2)
 - ProFTPD 1.2.10rc3 standalone mode SHUTDOWN
 - deleting existing scoreboard '/usr/local/var/proftpd/proftpd.scoreboard'


nochmals: proftpd -nd9 eingeben
beschränke mich hierbei mal auf die letzten paar zeilen
Code:

vl07s27 - dispatching auth request "getgroups" to module mod_sql
vl07s27 - dispatching auth request "getgroups" to module mod_auth_file
vl07s27 - dispatching auth request "getgroups" to module mod_auth_unix
vl07s27 - SETUP PRIVS at main.c:2722
vl07s27 - ROOT PRIVS at main.c:1957
vl07s27 - RELINQUISH PRIVS at main.c:1964
vl07s27 - ROOT PRIVS at main.c:2312
vl07s27 - opening scoreboard '/usr/local/var/proftpd/proftpd.scoreboard'
vl07s27 - RELINQUISH PRIVS at main.c:2338
vl07s27 - ProFTPD 1.2.10rc3 (devel) (built Sat Aug 7 12:12:35 CEST 2004) standalone mode STARTUP
vl07s27 - ROOT PRIVS at main.c:2175
vl07s27 - RELINQUISH PRIVS at main.c:2177
vl07s27 - FS: using system lstat()
vl07s27 - ProFTPD terminating (signal 2)
vl07s27 - ROOT PRIVS at main.c:1836
vl07s27 - RELINQUISH PRIVS at main.c:1859
vl07s27 - ProFTPD 1.2.10rc3 standalone mode SHUTDOWN
vl07s27 - ROOT PRIVS at main.c:1866
vl07s27 - deleting existing scoreboard '/usr/local/var/proftpd/proftpd.scoreboard'
vl07s27 - RELINQUISH PRIVS at main.c:1868


die proftpd.sql.lod datei gibt folgendes aus
Code:

Aug 07 21:37:10 mod_sql/4.11[26849]: backend module 'mod_sql_mysql/4.04'
Aug 07 21:37:10 mod_sql/4.11[26849]: backend api    'mod_sql_api_v1'
Aug 07 21:37:10 mod_sql/4.11[26849]: >>> sql_getconf
Aug 07 21:37:10 mod_sql/4.11[26849]: entering mysql cmd_defineconnection
Aug 07 21:37:10 mod_sql/4.11[26849]:  name: 'default'
Aug 07 21:37:10 mod_sql/4.11[26849]:  user: 'ftpuser'
Aug 07 21:37:10 mod_sql/4.11[26849]:  host: 'localhost'
Aug 07 21:37:10 mod_sql/4.11[26849]:    db: 'ftp'
Aug 07 21:37:10 mod_sql/4.11[26849]:  port: '3306'
Aug 07 21:37:10 mod_sql/4.11[26849]:   ttl: '0'
Aug 07 21:37:10 mod_sql/4.11[26849]: exiting mysql cmd_defineconnection
Aug 07 21:37:10 mod_sql/4.11[26849]: entering mysql cmd_open


ich weiß wirklich nicht mehr weiter, vielleicht hat ja einer einen guten Vorschlag
Gespeichert
Wörsty
Moderator
ProFTPD
*****
Offline Offline

Beiträge: 1602


50772603
Profil anzeigen WWW E-Mail
« Antwort #1 am: 08. August 2004, 09:50:11 »

Soweit ich mich erinnere hatte Debian ein Problem mit der MySQL Geschichte
 :arrow: http://www.proftpd.de/forum2/viewtopic.php?t=1015
Zitat von: "stonki"
via FTP findest Du eine frisch gepatchte RC3 fuer Debian. Teste mal

Du auch. Feedback willkommen.
Gespeichert

RedHat 8.0 (2.4er Kernel)
proftpd 1.2.10
-mod_sql_mysql
-mow_wrap
-mod_exec
-mod_ifsession[/size]
Xtreame
ProFTPD
*
Offline Offline

Beiträge: 5


Profil anzeigen
« Antwort #2 am: 09. August 2004, 00:24:47 »

also hab das mit der Version getestet

compiliert mit:
Code:

./configure --with-modules=mod_ifsession:mod_rewrite:mod_ratio:mod_sql:mod_sql_mysql --with-includes=/usr/include/mysql --with-libraries=/usr/lib/mysql


die proftpd.conf datei is die selbe geblieben

habe dann nochmal den proftpd -nd9 befehl eingeben und mal versucht eine Verbindung aufzubauen da kam dann schon etwas mehr raus.
Code:

vl07s27 - ProFTPD 1.2.9 (stable) (built Sun Aug 8 22:20:09 CEST 2004) standalone mode STARTUP
vl07s27 - ROOT PRIVS at main.c:2171
vl07s27 - RELINQUISH PRIVS at main.c:2177
vl07s27 - FS: using system lstat()
vl07s27 - FS: using system lstat()
vl07s27 - ROOT PRIVS at main.c:1150
vl07s27 - RELINQUISH PRIVS at main.c:1154
vl07s27 (217.225.xxx.xx[217.225.xxx.xx]) - ident lookup disabled
vl07s27 - FS: using system lstat()
vl07s27 (217.225.xxx.xx[217.225.xxx.xx]) - ROOT PRIVS at main.c:977
vl07s27 (217.225.xxx.xx[217.225.xxx.xx]) - SETUP PRIVS at main.c:982
vl07s27 (217.225.xxx.xx[217.225.xxx.xx]) - performing module session initializations
vl07s27 (217.225.xxx.xx[217.225.xxx.xx]) - ROOT PRIVS at mod_sql.c:3630
vl07s27 (217.225.xxx.xx[217.225.xxx.xx]) - RELINQUISH PRIVS at mod_sql.c:3632
vl07s27 (217.225.xxx.xx[217.225.xxx.xx]) - ProFTPD terminating (signal 11)
vl07s27 (217.225.xxx.xx[217.225.xxx.xx]) - FTP session closed.


und /usr/local/sbin/proftpd -c /usr/local/etc/proftpd.conf -d 4 -n erbrachte auch nicht viel mehr dazu
Code:

 - parsing '/usr/local/etc/proftpd.conf' configuration
 - <Directory /*>: adding section for resolved path '/*'
 - <Directory /home/ftpuser/files/data/>: adding section for resolved path '/home/ftpuser/files/data'
vl07s27 - ProFTPD 1.2.9 (stable) (built Sun Aug 8 22:20:09 CEST 2004) standalone mode STARTUP
vl07s27 (217.225.xxx.xx[217.225.xxx.xx]) - ProFTPD terminating (signal 11)
vl07s27 (217.225.xxx.xx[217.225.xxx.xx]) - FTP session closed.
vl07s27 - ProFTPD terminating (signal 2)
vl07s27 - ProFTPD 1.2.9 standalone mode SHUTDOWN


die sqldatei sagt auch nicht viel neues dazu
Code:

Aug 08 23:36:33 mod_sql/4.10[14796]: backend module 'mod_sql_mysql/4.04'
Aug 08 23:36:33 mod_sql/4.10[14796]: backend api    'mod_sql_api_v1'
Aug 08 23:36:33 mod_sql/4.10[14796]: >>> sql_getconf
Aug 08 23:36:33 mod_sql/4.10[14796]: entering mysql cmd_defineconnection
Aug 08 23:36:33 mod_sql/4.10[14796]:  name: 'default'
Aug 08 23:36:33 mod_sql/4.10[14796]:  user: 'ftpuser'
Aug 08 23:36:33 mod_sql/4.10[14796]:  host: 'localhost'
Aug 08 23:36:33 mod_sql/4.10[14796]:    db: 'ftp'
Aug 08 23:36:33 mod_sql/4.10[14796]:  port: '3306'
Aug 08 23:36:33 mod_sql/4.10[14796]:   ttl: '0'
Aug 08 23:36:33 mod_sql/4.10[14796]: exiting mysql cmd_defineconnection
Aug 08 23:36:33 mod_sql/4.10[14796]: entering mysql cmd_open
Gespeichert
stonki
Administrator
ProFTPD
*****
Offline Offline

Beiträge: 1853


15318939
Profil anzeigen WWW E-Mail
« Antwort #3 am: 09. August 2004, 06:26:02 »

Zitat von: "Xtreame"
also hab das mit der Version getestet

vl07s27 - ProFTPD 1.2.9 (stable) (built Sun Aug 8 22:20:09 CEST 2004) standalone mode STARTUP


die Version waere doch 1.2.10RCx und nicht 1.2.9
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
Wörsty
Moderator
ProFTPD
*****
Offline Offline

Beiträge: 1602


50772603
Profil anzeigen WWW E-Mail
« Antwort #4 am: 09. August 2004, 08:24:34 »

Genau. Der "Patch" ist für Version 1.2.10RC3
Gespeichert

RedHat 8.0 (2.4er Kernel)
proftpd 1.2.10
-mod_sql_mysql
-mow_wrap
-mod_exec
-mod_ifsession[/size]
Xtreame
ProFTPD
*
Offline Offline

Beiträge: 5


Profil anzeigen
« Antwort #5 am: 09. August 2004, 08:44:42 »

ups, war im verkehrten Verzeichnis  :roll: , wer lesen kann is klar im Vorteil, werd das mal flucks installieren, meld mich dann wieder

//edit:

So also nachdem ich nun endlich die richtige Version installiert habe  :oops: läuft es ohne probs
Danke für die hilfe
Gespeichert
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.061 Sekunden mit 16 Zugriffen.