www.ProFTPD.de
13. März 2007, 22:01:06 *
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  
  Zeige Beiträge
Seiten: [1]
1  ProFTPD / ProFTPD - Deutsch / Re: ftp fehlermeldung beim start am: 15. Mai 2006, 11:31:08
omg totaler müll was du von dir lässt ist mir aber auch latte!

ich werde öfters mal reinschauen und wen ich helfen kann tu ich das auch!

aber auch nur wen ich 100% helfen kann und nicht so wie du hier mal ein bissel vermutung ablassen!

so viel spass noch für mich ist das ding durch

  gruss karsten
2  ProFTPD / ProFTPD - Deutsch / Re: ftp fehlermeldung beim start am: 15. Mai 2006, 11:03:32
rofl jetzt gehts aber ruckzuck mit den antworten hier sehr merkwürdig!naja musst dich nicht gleich angegriffen fühlen das war nicht gemeckert das war reine kritik mein freund!


zu meinem prob der hostname war falsch gesetzt!also ein standartfehler der in einem anderen forum sofort gelöst wurde das sollte euch zu denken geben!
achja wer so ein forum betreibt also quasi ist das ja ein supportforum für proftpd der sollte sich auch drum kümmern und täglich mal reinschauen was hier los ist und versuchen zu helfen gerade bei so standart sachen

  gruss karsten
3  ProFTPD / ProFTPD - Deutsch / Re: ftp fehlermeldung beim start am: 15. Mai 2006, 10:15:51
jo thx jungs aber mir wurde schon geholfen in einem forum das überhaupt nichts mit proftp zu tun hat!
deutlich und klar und nicht mit solchen aussagen wie poste mal deine conf und dann kommt nichts oder da liegt was im argen.also dafür das hier das hauptforum für proftp ist finde ich es mal ganz arm wie ihr euch hier um die leute kümmert!sorry meine meinung trotzdem alles gute fürs weitere hier für euer forum!

  gruss karsten
4  ProFTPD / ProFTPD - Deutsch / Re: ftp fehlermeldung beim start am: 12. Mai 2006, 13:10:23
o.k proftp kann ich schon mal im webmin sehen aber immer noch nicht starten
habe ein start script in /etc/init.d mit namen proftpd und die schaut so aus!
aber starten tut er den ftp nicht(fehlermeldung unten)




#! /bin/sh

# $local_fs all local file systems are mounted
# (most services should need this!)
# $remote_fs all remote file systems are mounted
# (note that /usr may be remote, so
# many services should Require this!)
# $syslog system logging facility up
# $network low level networking (eth card, ...)
# $named hostname resolution available
# $netdaemons all network daemons are running


# Check for missing binaries (stale symlinks should not happen)
PROFTPD_BIN=/usr/local/sbin/proftpd
test -x $PROFTPD_BIN || exit 5

# Check for existence of needed config file and read it
PROFTPD_CONFIG=/usr/local/etc/proftpd.conf
test -r $PROFTPD_CONFIG || exit 6
# . $PROFTPD_CONFIG

. /etc/rc.status

# Reset status of this service
rc_reset

case "$1" in
start)
echo -n "Starting ProFTPD "
## Start daemon with startproc(Cool. If this fails
## the return value is set appropriately by startproc.
startproc $PROFTPD_BIN

# Remember status and be verbose
rc_status -v
;;
stop)
echo -n "Shutting down ProFTPD "
## Stop daemon with killproc(Cool and if this fails
## killproc sets the return value according to LSB.

killproc -TERM $PROFTPD_BIN

# Remember status and be verbose
rc_status -v
;;
try-restart)
## Do a restart only if the service was active before.
## Note: try-restart is not (yet) part of LSB (as of 1.2)
$0 status >/dev/null && $0 restart

# Remember status and be quiet
rc_status
;;
restart)
## Stop the service and regardless of whether it was
## running or not, start it again.
$0 stop
$0 start

# Remember status and be quiet
rc_status
;;
force-reload)
## Signal the daemon to reload its config. Most daemons
## do this on signal 1 (SIGHUP).
## If it does not support it, restart.

echo -n "Reload service ProFTPD "
## if it supports it:
killproc -HUP $PROFTPD_BIN
#touch /var/run/FOO.pid
rc_status -v

## Otherwise:
#$0 stop && $0 start
#rc_status
;;
reload)
## Like force-reload, but if daemon does not support
## signaling, do nothing (!)

# If it supports signaling:
echo -n "Reload service PROFTPD "
killproc -HUP $PROFTPD_BIN
#touch /var/run/FOO.pid
rc_status -v

## Otherwise if it does not support reload:
#rc_failed 3
#rc_status -v
;;
status)
echo -n "Checking for service ProFTPD "
## Check status with checkproc(Cool, if process is running
## checkproc will return with exit status 0.

checkproc $PROFTPD_BIN
# NOTE: rc_status knows that we called this init script with
# "status" option and adapts its messages accordingly.
rc_status -v
;;
probe)
## Optional: Probe for the necessity of a reload, print out the
## argument to this init script which is required for a reload.
## Note: probe is not (yet) part of LSB (as of 1.2)

# test /etc/FOO/FOO.conf -nt /var/run/FOO.pid && echo reload
;;
*)
echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload|probe}"
exit 1
;;
esac
rc_exit


fehlermeldung:

/etc/init.d/proftpd: line 1: ---8: No such file or directory
: command not found: line 3:
: command not found: line 13:
: command not found: line 14:
: numeric argument required7: exit: 5

was kann es sein plz help
5  ProFTPD / ProFTPD - Deutsch / Re: ftp fehlermeldung beim start am: 12. Mai 2006, 08:29:00
und keiner eine ahnung woran es liegen kann?
6  ProFTPD / ProFTPD - Deutsch / Re: ftp fehlermeldung beim start am: 11. Mai 2006, 15:59:21
das die standalone hier von der seite


(C) www.proftpd.de
# updated 2003-05-12
# by Stonki
ServerName "xxx.xxx.217.130"
ServerType standalone
DefaultServer on

# 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

# Note that this ONLY works in standalone mode
MaxInstances 30

# Set the user and group under which the server will run.
User nobody
Group nogroup

# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
DefaultRoot ~

 # Normally, we want files to be overwriteable.

AllowOverwrite on
7  ProFTPD / ProFTPD - Deutsch / ftp fehlermeldung beim start am: 11. Mai 2006, 15:33:23
moin moin erst mal der karsten aus hamburg hier!

so ich habe folgendes problem wenn ich versuche im putty mein ftp zu starten

proftpd -n -d5

bekomme ich folgende meldung

    parsing '/usr/local/etc/proftpd.conf' configuration
 - IPv4 getaddrinfo '_none_' error: Name or service not known
 - warning: unable to determine IP address of '_none_'
 - error: no valid servers configured
 - Fatal: error processing configuration file '/usr/local/etc/proftpd.conf'

habe auch seit 2 nächten nicht mehr gepennt hrhr kopf qualmt und ich weiss nicht mehr weiter ich hoffe ihr könnt mir weiter helfen was ich falsch mache den googel und co konnten es nicht!
ja ich bin neueinsteiger thx im voraus karsten
Seiten: [1]
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.065 Sekunden mit 18 Zugriffen.