PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : [Debian] Bekomme pproftpd nicht installiert



Lockslay
30.04.03, 14:17
Hallo

Ich versuche grade den proftpd Server unter Woody zu installieren.


debian2:/home/lockslay# apt-get install proftpd
Reading Package Lists... Done
Building Dependency Tree... Done
Package proftpd has no available version, but exists in the database.
This typically means that the package was mentioned in a dependency and
never uploaded, has been obsoleted or is not available with the contents
of sources.list
E: Package proftpd has no installation candidate


Ich habe die /etc/apt/sources.list
schon bearbeitet und erweitert.
Aber ich bekomme den Server nicht installiert.
Wie habt Ihr den Euren proftpd Server installiert ?

Bitte um hilfe
Lockslay

bernie
30.04.03, 14:53
Hi,

ist das woody/sarge/sid? ein "apt-get update" vorher hilft nicht?

Ciao, Bernie

Lockslay
30.04.03, 15:45
Hallo

habe auch ein update vorher gemacht aber das hat auch keinerb Erfolg gehabt:mad:

Gruß,
Lockslay

Lockslay
02.05.03, 14:53
Hallo

Danke für die hilfe.
Es war die non-US.
Habe proftpd installiert.

Habe aber jetzt Problem den Server einzurichten.
Habe eine Gruppe names ftpserver Erstellt.
Dann mit den Code:

ftpasswd --passwd --file /etc/ftpd.passwd --home /mein/ftp/verzeichnis -name ftptest --shell /bin/false --uid 1101 --gid 1100 ´

einen FTP User erstellt.
Der liegt auch in der Datei /etc/ftpd.passwd

Nur wenn ich mich einloggen möchte kommt dei Meldung
FEHLER:> Paßwort nicht akzeptiert
FEHLER:> Anmeldung nicht möglich.


Meine error log sagen :


May 2 15:16:21 debian2 proftpd[760]: debian2.194.25.2.129 (192.168.0.2[192.168.0.2]) - FTP session opened.
May 2 15:16:21 debian2 proftpd[760]: debian2.194.25.2.129 (192.168.0.2[192.168.0.2]) - FTP session closed.


das was mich wundert ist die Adresse debian2.194.25.2.129 habe ich nie vergeben. Die Adresse ist 192.168.0.5 und der Rechnername debian2 ???



Meine proftpd.conf:



debian2:/mnt# less /etc/proftpd.conf
# 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 "Debian"
ServerType standalone
DeferWelcome off

ShowSymlinks on
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
AllowOverwrite on
DefaultRoot ~
AuthUserFile /etc/ftpd.passwd

TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 1200


# We want 'welcome.msg' displayed at login, and '.message' displayed
# in each newly chdired directory.
DisplayLogin welcome.msg
DisplayFirstChdir .message


DenyFilter \*.*/

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

# Down-/Upload-Ratio
#RateReadBPS 40000
#RateWriteBPS 80000


# 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>

# A basic anonymous configuration, no upload directories.

## <Anonymous ~ftp>
## User ftp
## Group nogroup
## # We want clients to be able to login with "anonymous" as well as "ftp"
## UserAlias anonymous ftp
##
## RequireValidShell off
##
## # Limit the maximum number of anonymous logins
## MaxClients 10
##
## # We want 'welcome.msg' displayed at login, and '.message' displayed
## # in each newly chdired directory.
## DisplayLogin welcome.msg
## DisplayFirstChdir .message
##
## # Limit WRITE everywhere in the anonymous chroot
## <Directory *>
## <Limit WRITE>
## DenyAll
## </Limit>
## </Directory>
##
## # Uncomment this if you're brave.
## # <Directory incoming>
## # # Umask 022 is a good standard umask to prevent new files and dirs
## # # (second parm) from being group and world writable.
## # Umask 022 022
## # <Limit READ WRITE>
## # DenyAll
## # </Limit>
## # <Limit STOR>
## # AllowAll
## # </Limit>
## # </Directory>
##
## </Anonymous>



Hoffe das mir einer helfen kann.

Gruß,
Lockslay