Titel: Mod_SQL Anmeldung? Beitrag von: Gast am 30. Oktober 2003, 16:38:26 Hallo ich benötige eure Hilfe!
wenn ich die mod_sql direktiven in die conf eintrage bekomme ich diese Meldung im debug modus. was liegt denn hier im argen? [root@ftpserver etc]# proftpd -n -d5 - parsing '/usr/local/etc/proftpd.conf' configuration - <Directory />: adding section for resolved path '/' 127.0.0.1 - 127.0.0.1 - Config for ProFTPD Server: 127.0.0.1 - ~ftp/ 127.0.0.1 - Limit 127.0.0.1 - DenyAll 127.0.0.1 - UserName 127.0.0.1 - GroupName 127.0.0.1 - RequireValidShell 127.0.0.1 - UserAlias 127.0.0.1 - MaxClients 127.0.0.1 - DisplayLogin 127.0.0.1 - DisplayFirstChdir 127.0.0.1 - Umask 127.0.0.1 - SQLConnectInfo 127.0.0.1 - SQLAuthenticate 127.0.0.1 - SQLAuthTypes 127.0.0.1 - / 127.0.0.1 - AllowOverwrite 127.0.0.1 - Umask 127.0.0.1 - SQLConnectInfo 127.0.0.1 - SQLAuthenticate 127.0.0.1 - SQLAuthTypes 127.0.0.1 - DefaultServer 127.0.0.1 - Umask 127.0.0.1 - SQLConnectInfo 127.0.0.1 - SQLAuthenticate 127.0.0.1 - SQLAuthTypes 127.0.0.1 - SQLUserTable 127.0.0.1 - SQLUsernameField 127.0.0.1 - SQLPasswordField 127.0.0.1 - SQLUidField 127.0.0.1 - SQLGidField 127.0.0.1 - SQLHomedirField 127.0.0.1 - SQLShellField 127.0.0.1 - SQLGroupTable 127.0.0.1 - SQLGroupnameField 127.0.0.1 - SQLGroupGIDField 127.0.0.1 - SQLGroupMembersField 127.0.0.1 - ProFTPD 1.2.9rc3 (devel) (built Don Okt 30 15:43:08 CET 2003) standalone mode STARTUP 127.0.0.1 (14.203.1.139[14.203.1.139]) - error deleting scoreboard entry: Invalid argument 127.0.0.1 (14.203.1.139[14.203.1.139]) - FTP session closed. Titel: Mod_SQL Anmeldung? Beitrag von: Wörsty am 30. Oktober 2003, 16:47:31 Deine Zugangsdaten zur DB sind falsch.
Stichwort: SQLLogfile (http://www.proftpd.de/index.php?id=28&directive_name=SQLLogfile) Titel: Mod_SQL Anmeldung? Beitrag von: gast am 31. Oktober 2003, 08:04:35 danke für den tipp!
wie kann ich denn einen richtigen user für die db anlegen?muss ich für die db extra einen user anlegen?der user root den ich angegeben habe ist system root. es folgt ein ausschnitt aus meiner log datei: Oct 31 07:59:12 mod_sql/4.10[1831]: backend module 'mod_sql_mysql/4.04' Oct 31 07:59:12 mod_sql/4.10[1831]: backend api 'mod_sql_api_v1' Oct 31 07:59:12 mod_sql/4.10[1831]: >>> sql_getconf Oct 31 07:59:12 mod_sql/4.10[1831]: entering mysql cmd_defineconnection Oct 31 07:59:12 mod_sql/4.10[1831]: name: 'default' Oct 31 07:59:12 mod_sql/4.10[1831]: user: 'root' Oct 31 07:59:12 mod_sql/4.10[1831]: host: 'localhost' Oct 31 07:59:12 mod_sql/4.10[1831]: db: 'ftpanmeldung' Oct 31 07:59:12 mod_sql/4.10[1831]: port: '3306' Oct 31 07:59:12 mod_sql/4.10[1831]: ttl: '0' Oct 31 07:59:12 mod_sql/4.10[1831]: exiting mysql cmd_defineconnection Oct 31 07:59:12 mod_sql/4.10[1831]: entering mysql cmd_open Oct 31 07:59:12 mod_sql/4.10[1831]: exiting mysql cmd_open Oct 31 07:59:12 mod_sql/4.10[1831]: unrecoverable backend error Oct 31 07:59:12 mod_sql/4.10[1831]: error: '1045' Oct 31 07:59:12 mod_sql/4.10[1831]: message: 'Access denied for user: 'root@localhost' (Using password: YES)' Oct 31 07:59:42 mod_sql/4.10[1835]: backend module 'mod_sql_mysql/4.04' Oct 31 07:59:42 mod_sql/4.10[1835]: backend api 'mod_sql_api_v1' Oct 31 07:59:42 mod_sql/4.10[1835]: >>> sql_getconf Oct 31 07:59:42 mod_sql/4.10[1835]: entering mysql cmd_defineconnection Oct 31 07:59:42 mod_sql/4.10[1835]: name: 'default' Oct 31 07:59:42 mod_sql/4.10[1835]: user: 'root' Oct 31 07:59:42 mod_sql/4.10[1835]: host: 'localhost' Oct 31 07:59:42 mod_sql/4.10[1835]: db: 'ftpanmeldung' Oct 31 07:59:42 mod_sql/4.10[1835]: port: '3306' Oct 31 07:59:42 mod_sql/4.10[1835]: ttl: '0' Oct 31 07:59:42 mod_sql/4.10[1835]: exiting mysql cmd_defineconnection Oct 31 07:59:42 mod_sql/4.10[1835]: entering mysql cmd_open Oct 31 07:59:42 mod_sql/4.10[1835]: exiting mysql cmd_open Oct 31 07:59:42 mod_sql/4.10[1835]: unrecoverable backend error Oct 31 07:59:42 mod_sql/4.10[1835]: error: '1045' Oct 31 07:59:42 mod_sql/4.10[1835]: message: 'Access denied for user: 'root@localhost' (Using password: YES)' Titel: Mod_SQL Anmeldung? Beitrag von: Wörsty am 31. Oktober 2003, 08:19:05 mysql aufrufen und dann:
Code: use mysql; GRANT Select, Insert, Update, Delete, Index, Alter, Create, Drop, References ON ftpdatenbankname.* TO 'username'@'%' IDENTIFIED BY 'passwort'; FLUSH PRIVILEGES; \q Titel: Mod_SQL Anmeldung? Beitrag von: gast am 31. Oktober 2003, 08:33:42 kann ich nicht über webmin einen user anlegen?dieser erscheint mir recht schwierig.ich blick da nicht ganz durch.
Titel: Mod_SQL Anmeldung? Beitrag von: Wörsty am 31. Oktober 2003, 08:55:56 Was ist daran schwierig?
Musste nur abtippen oder in dein Shell-Fenster kopieren. Kannst natürlich auch myphpadmin, webmin oder sonstwas nehmen. Titel: Mod_SQL Anmeldung? Beitrag von: gast am 31. Oktober 2003, 09:08:58 ich habe jetzt über webmin einen user angelegt.aber die db kennt diesen user immer nocht nicht.?
-------------------------------------------------------------------------------- Erstelle neuen Benutzer Benutzer Hosts Verschlüsseltes Kennwort Rechte dbuser Alle 7f111b3f2f32c28e Alle Titel: Mod_SQL Anmeldung? Beitrag von: Wörsty am 31. Oktober 2003, 09:12:33 Flush privileges oder MySQL neu starten?
Titel: Mod_SQL Anmeldung? Beitrag von: gast am 31. Oktober 2003, 10:00:25 es hat alles geklappt ich danke euch allen!!!Ihr macht wirklich tolle arbeit!!
weiter so!!danke nochmal |