fats2508
Goto Top

Problem mit vsftpd.conf, Fehlermeldung Starting vsftpd startproc: exit status of parent of /usr/sbin/vsftpd: 1

Hallo zusammen,

probiere ein wenig mit SUSE LINUX 10.1 rum, bin aber bei weitem kein experte, deswegen frag ich mal die leute, die Ahnung davon haben....

Habe mit vsftpd einen ftp server eingerichtet, der auch wunderbar fubktioniert, ABER....
Alle Benutzer habe root zugriff auf den server, obwohl ich in der vsftpd.conf die chabgeroot option eingeschaltet habe.
Außerdem würde ich den Anonymen Zugriff gerne verbieten, das funzt aber auch nicht.
Nach dem Modifizieren der conf datei bekomme ich nach dem restart folgenden Fehler:

Starting vsftpd startproc: exit status of parent of /usr/sbin/vsftpd: 1

Hier ist die vsftpd.conf:

  1. Example config file /etc/vsftpd.conf
#
  1. The default compiled in settings are fairly paranoid. This sample file
  2. loosens things up a bit, to make the ftp daemon more usable.
  3. Please see vsftpd.conf.5 for all compiled in defaults.
#
  1. If you do not change anything here you will have a minimum setup for an
  2. anonymus FTP server.
#
  1. READ THIS: This example file is NOT an exhaustive list of vsftpd options.
  2. Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
  3. capabilities.

  1. General Settings
#
  1. Uncomment this to enable any form of FTP write command.
#
write_enable=YES
#
  1. Activate directory messages - messages given to remote users when they
  2. go into a certain directory.
#
dirmessage_enable=YES
#
  1. It is recommended that you define on your system a unique user which the
  2. ftp server can use as a totally isolated and unprivileged user.
#
#nopriv_user=ftpsecure
#
  1. You may fully customise the login banner string:
#
#ftpd_banner="Welcome to FOOBAR FTP service."
#
  1. You may activate the "-R" option to the builtin ls. This is disabled by
  2. default to avoid remote users being able to cause excessive I/O on large
  3. sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
  4. the presence of the "-R" option, so there is a strong case for enabling it.
#
#ls_recurse_enable=YES
#
  1. You may specify a file of disallowed anonymous e-mail addresses. Apparently
  2. useful for combatting certain DoS attacks.
#
#deny_email_enable=YES
#
  1. (default follows)
#
#banned_email_file=/etc/vsftpd.banned_emails
#
  1. If enabled, all user and group information in
  2. directory listings will be displayed as "ftp".
#
#hide_ids=YES

  1. Local FTP user Settings
  2. Uncomment this to allow local users to log in.
#
local_enable=YES
#
  1. Default umask for local users is 077. You may wish to change this to 022,
  2. if your users expect that (022 is used by most other ftpd's)
#
#local_umask=022
#
  1. Uncomment to put local users in a chroot() jail in their home directory
  2. after login.
#
chroot_local_user=YES
#
  1. You may specify an explicit list of local users to chroot() to their home
  2. directory. If chroot_local_user is YES, then this list becomes a list of
  3. users to NOT chroot().
#
#chroot_list_enable=YES
#
  1. (default follows)
#
#chroot_list_file=/etc/vsftpd.chroot_list
#
  1. The maximum data transfer rate permitted, in bytes per second, for
  2. local authenticated users. The default is 0 (unlimited).
#
#local_max_rate=7200


  1. Anonymus FTP user Settings
#
  1. Allow anonymous FTP?
#
#anonymous_enable=YES
#
  1. Anonymous users will only be allowed to download files which are
  2. world readable.
#
#anon_world_readable_only=YES
#
  1. Uncomment this to allow the anonymous FTP user to upload files. This only
  2. has an effect if the above global write enable is activated. Also, you will
  3. obviously need to create a directory writable by the FTP user.
#
#anon_upload_enable=YES
#
  1. Default umask for anonymus users is 077. You may wish to change this to 022,
  2. if your users expect that (022 is used by most other ftpd's)
#
#anon_umask=022
#
  1. Uncomment this if you want the anonymous FTP user to be able to create
  2. new directories.
#
#anon_mkdir_write_enable=YES
#
  1. Uncomment this to enable anonymus FTP users to perform other write operations
  2. like deletion and renaming.
#
#anon_other_write_enable=YES
#
  1. If you want, you can arrange for uploaded anonymous files to be owned by
  2. a different user. Note! Using "root" for uploaded files is not
  3. recommended!
#
#chown_uploads=YES
#chown_username=whoever
#
  1. The maximum data transfer rate permitted, in bytes per second, for anonymous
  2. authenticated users. The default is 0 (unlimited).
#
#anon_max_rate=7200


  1. Log Settings
#
  1. Log to the syslog daemon instead of using an logfile.
#
syslog_enable=YES
#
  1. Uncomment this to log all FTP requests and responses.
#
#log_ftp_protocol=YES
#
  1. Activate logging of uploads/downloads.
#
#xferlog_enable=YES
#
  1. You may override where the log file goes if you like. The default is shown
  2. below.
#
#vsftpd_log_file=/var/log/vsftpd.log
  1. If you want, you can have your log file in standard ftpd xferlog format.
  2. Note: This disables the normal logging unless you enable dual_log_enable below.
#
#xferlog_std_format=YES
#
  1. You may override where the log file goes if you like. The default is shown
  2. below.
#
#xferlog_file=/var/log/xferlog
#
  1. Enable this to have booth logfiles. Standard xferlog and vsftpd's own style log.
#
#dual_log_enable=YES
#
  1. Uncomment this to enable session status information in the system process listing.
#
#setproctitle_enable=YES

  1. Transfer Settings
#
  1. Make sure PORT transfer connections originate from port 20 (ftp-data).
#
connect_from_port_20=YES
#
  1. You may change the default value for timing out an idle session.
#
#idle_session_timeout=600
#
  1. You may change the default value for timing out a data connection.
#
#data_connection_timeout=120
#
  1. Enable this and the server will recognise asynchronous ABOR requests. Not
  2. recommended for security (the code is non-trivial). Not enabling it,
  3. however, may confuse older FTP clients.
#
#async_abor_enable=YES
#
  1. By default the server will pretend to allow ASCII mode but in fact ignore
  2. the request. Turn on the below options to have the server actually do ASCII
  3. mangling on files when in ASCII mode.
  4. Beware that turning on ascii_download_enable enables malicious remote parties
  5. to consume your I/O resources, by issuing the command "SIZE /big/file" in
  6. ASCII mode.
  7. These ASCII options are split into upload and download because you may wish
  8. to enable ASCII uploads (to prevent uploaded scripts etc. from breaking),
  9. without the DoS risk of SIZE and ASCII downloads. ASCII mangling should be
  10. on the client anyway..
#
#ascii_upload_enable=YES
#ascii_download_enable=YES
#
  1. Set to NO if you want to disallow the PASV method of obtaining a data
  2. connection.
#
#pasv_enable=NO

  1. PAM setting. Do NOT change this unless you know what you do!
#
pam_service_name=vsftpd

  1. Set listen=YES if you want vsftpd to run standalone
#
listen=NO

  1. Set to ssl_enable=YES if you want to enable SSL
ssl_enable=NO


Kann mir jemand helfen ?

Danke schonmal....

Content-Key: 43610

Url: https://administrator.de/contentid/43610

Printed on: April 25, 2024 at 12:04 o'clock

Member: ratzla
ratzla Nov 03, 2006 at 07:57:52 (UTC)
Goto Top
Damit sollte es funktionieren:
write_enable=YES
dirmessage_enable=YES
nopriv_user=ftpuser
ftpd_banner="Welcome to XYZ FTP service."
ls_recurse_enable=YES
local_enable=YES
chroot_local_user=YES
syslog_enable=YES
connect_from_port_20=YES
pam_service_name=vsftpd
ssl_enable=NO

ftpuser ist der unprivilegierte user mit dem zugegriffen wird. Muss natürlich als User (Gruppe ftp) angelegt werden.
Member: fats2508
fats2508 Nov 03, 2006 at 20:52:35 (UTC)
Goto Top
Problem gelößt:

Der Dienst pure-ftp lief auch noch. Nach Abschalten geht alles wie gewünscht.