返回顶部
首页 > 资讯 > 操作系统 >linux下vsFTPd提示530 Login incorrect错误的原因是什么
  • 795
分享到

linux下vsFTPd提示530 Login incorrect错误的原因是什么

2023-06-13 03:06:21 795人浏览 八月长安
摘要

这篇文章主要讲解了“linux下vsFTPd提示530 Login incorrect错误的原因是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“linux下vsFTPd提示530 Log

这篇文章主要讲解了“linux下vsFTPd提示530 Login incorrect错误的原因是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“linux下vsFTPd提示530 Login incorrect错误的原因是什么”吧!

方法一:

登录出现 vsftpd 530 login incorrect 报错。

解决方法:

cp Path/RedHat/vsftpd.pam /etc/pam.d/ftp

path为vsftp解压缩源文件目录

这是因为我们RHEL启用了PAM,所在用到vsftp时需要用到 /etc/pam.d/ftp这个文件(默认源码安装的不会有这个文件),因此除了匿名用户外本地用户无法登录。

方法二:

测试Checkpoint的VPN1 R6x的时候,遇到了这个错误。这说明client端跟server端的连接性是没问题。但是就是想不出为什么,还以为是用户名和口令错误呢。后来才Google了一下,发现是server端的配置有问题。

检查/etc/vsftpd/user_list和/etc/ftpusers,是这个文件/etc/vsftpd/vsftpd.conf少了一行:

代码如下:


pam_service_name=vsftpd
$ echo ‘pam_service_name=vsftpd’ >>/etc/vsftpd/vsftpd.conf
$ service vsftpd restart

530 error就消除了!

下面是更详细的方法:

[root@atr-3-server1 admin]# cat /etc/vsftpd/vsftpd.conf
# Example config file /etc/vsftpd.conf
#
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
#
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
# capabilities.
#
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=no
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any fORM of FTP write command.
write_enable=YES
#
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
local_umask=022
#
# Uncomment this to allow the anonymous FTP user to upload files. This only
# has an effect if the above global write enable is activated. Also, you will
# obviously need to create a directory writable by the FTP user.
#anon_upload_enable=YES
#
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
#anon_mkdir_write_enable=YES
#
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES
#
# Activate logging of uploads/downloads.
xferlog_enable=YES
#
# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=YES
#
# If you want, you can arrange for uploaded anonymous files to be owned by
# a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES
#chown_username=whoever
#
# You may override where the log file goes if you like. The default is shown
# below.
#xferlog_file=/var/log/vsftpd.log
#
# If you want, you can have your log file in standard ftpd xferlog format
xferlog_std_format=YES
#
# You may change the default value for timing out an idle session.
#idle_session_timeout=600
#
# You may change the default value for timing out a data connection.
#data_connection_timeout=120
#
# It is recommended that you define on your system a unique user which the
# ftp server can use as a totally isolated and unprivileged user.
#nopriv_user=ftpsecure
#
# Enable this and the server will recognise asynchronous ABOR requests. Not
# recommended for security (the code is non-trivial). Not enabling it,
# however, may confuse older FTP clients.
#async_abor_enable=YES
#
# By default the server will pretend to allow ASCII mode but in fact ignore
# the request. Turn on the below options to have the server actually do ASCII
# mangling on files when in ASCII mode.
# Beware that turning on ascii_download_enable enables malicious remote parties
# to consume your I/O resources, by issuing the command "SIZE /big/file" in
# ASCII mode.
# These ASCII options are split into upload and download because you may wish
# to enable ASCII uploads (to prevent uploaded scripts etc. from breaking),
# without the DoS risk of SIZE and ASCII downloads. ASCII mangling should be
# on the client anyway..
#ascii_upload_enable=YES
#ascii_download_enable=YES
#
# You may fully customise the login banner string:
#ftpd_banner=Welcome to blah FTP service.
#
# You may specify a file of disallowed anonymous e-mail addresses. Apparently
# useful for combatting certain DoS attacks.
#deny_email_enable=YES
# (default follows)
#banned_email_file=/etc/vsftpd.banned_emails
#
# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
#chroot_list_enable=YES
# (default follows)
#chroot_list_file=/etc/vsftpd.chroot_list
#
# You may activate the "-R" option to the builtin ls. This is disabled by
# default to avoid remote users being able to cause excessive I/O on large
# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
# the presence of the "-R" option, so there is a strong case for enabling it.
#ls_recurse_enable=YES

pam_service_name=vsftpd
userlist_enable=YES
#enable for standalone mode
listen=YES
tcp_wrappers=YES

感谢各位的阅读,以上就是“linux下vsFTPd提示530 Login incorrect错误的原因是什么”的内容了,经过本文的学习后,相信大家对linux下vsFTPd提示530 Login incorrect错误的原因是什么这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

--结束END--

本文标题: linux下vsFTPd提示530 Login incorrect错误的原因是什么

本文链接: https://lsjlt.com/news/264764.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • linux下vsFTPd提示530 Login incorrect错误的原因是什么
    这篇文章主要讲解了“linux下vsFTPd提示530 Login incorrect错误的原因是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“linux下vsFTPd提示530 Log...
    99+
    2023-06-13
  • linux下提示bash:command not found 是什么原因
    本篇内容介绍了“linux下提示bash:command not found 是什么原因”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!如果新...
    99+
    2023-06-13
  • MySql总是提示语法错误的原因有哪些
    MySQL提示语法错误的原因可能有以下几个:1. SQL语句拼写错误:在编写SQL语句时,可能会出现拼写错误,如错误的表名、列名等。...
    99+
    2023-08-20
    MySql
  • linux中出现make:arm-linux- conmand not found错误的原因是什么
    这篇文章主要为大家展示了“linux中出现make:arm-linux- conmand not found错误的原因是什么”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“linux中出现make...
    99+
    2023-06-13
  • Win7打开Word程序提示宏错误是什么原因如何解决
      Office旗下的Word和Excel是两大常用办公软件之首。虽说简单易懂但是也还是经常会碰到这样那样的问题点。在老早之前就已经有不少Win7用户反映在打开word程序时提示宏错误的现象。这让不少的用户颇为震惊,不知...
    99+
    2023-06-15
    Win7 Word程序 宏错误 Word 错误 原因 程序
  • php出现500错误的原因是什么
    本文小编为大家详细介绍“php出现500错误的原因是什么”,内容详细,步骤清晰,细节处理妥当,希望这篇“php出现500错误的原因是什么”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。php出现500错误的原因:1...
    99+
    2023-06-29
  • Linux:终端提示符prompt不如期生效的原因是什么
    这篇文章将为大家详细讲解有关Linux:终端提示符prompt不如期生效的原因是什么,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。前言先来简单介绍下, prompt是什么鬼 顾名思义就是提示...
    99+
    2023-06-16
  • Linux下python pip install失败的原因是什么
    今天就跟大家聊聊有关Linux下python pip install失败的原因是什么,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。问题:安装包出现Retrying (Retry(to...
    99+
    2023-06-05
  • HTTP 503错误是什么,HTTP 503错误的原因和解决方法
      HTTP 503错误是指服务器暂时无法处理客户端的请求,常常出现在服务器超负荷或维护期间。在这种情况下,服务器会向客户端返回一个503状态码,告诉客户端请求无法完成。   1.服务器超负荷   当服务器上的请求量超过其容量时,服务器就无...
    99+
    2023-08-31
    http 服务器 网络协议
  • MySQL出现“Lock wait timeout exceeded”错误的原因是什么?
    1. 概述 在本教程中,我们将讨论MySQL中的“Lock wait timeout exceeded(锁等待超时)”错误。我们将讨论导致这个错误的原因以及MySQL锁的一些细微差别。 为了简单起见,...
    99+
    2023-09-02
    mysql 数据库
  • laravel报500错误的原因是什么及怎么解决
    本文小编为大家详细介绍“laravel报500错误的原因是什么及怎么解决”,内容详细,步骤清晰,细节处理妥当,希望这篇“laravel报500错误的原因是什么及怎么解决”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧...
    99+
    2023-07-05
  • oracle中12154错误的原因和解决方法是什么
    在Oracle中,12154错误通常表示无法解析连接字符串中的服务名或TNS别名。这可能是由于以下原因导致的:1. TNS别名或服务...
    99+
    2023-08-23
    oracle
  • 出现MySQL server has gone away这个错误的原因是什么
    本篇内容主要讲解“出现MySQL server has gone away这个错误的原因是什么”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“出现MySQL se...
    99+
    2024-04-02
  • 在solaris 中套接字错误EINPROGRESS 的可能原因是什么
    在Solaris中,套接字错误EINPROGRESS表示连接正在进行中。这通常发生在非阻塞套接字上,并且在尝试建立连接时返回。可能的...
    99+
    2023-09-27
    solaris
  • win7组策略错误的原因及解决方法是什么
    Win7组策略错误可能有以下几个原因: 其他设置冲突:如果存在多个组策略设置,可能会导致冲突,从而引发错误。 缺少或损坏的文...
    99+
    2023-10-22
    win7
  • Nginx 502 Bad Gateway 错误的原因及解决方法是什么
    本篇文章为大家展示了Nginx 502 Bad Gateway 错误的原因及解决方法是什么,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。最近好多公司的网站遇到过502错误网页,自己总结了一下。&nb...
    99+
    2023-06-03
  • jsp出现500错误的原因及解决方法是什么
    JSP(Java Server Pages)出现500错误通常是由以下原因引起的:1. 语法错误:JSP页面中存在语法错误,比如拼写...
    99+
    2023-08-19
    jsp
  • php出现403错误的原因是什么及如何解决
    这篇文章主要介绍“php出现403错误的原因是什么及如何解决”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“php出现403错误的原因是什么及如何解决”文章能帮助大家解决问题。PHP 403是指在使用...
    99+
    2023-07-05
  • php 404错误的常见原因和处理方法是什么
    这篇文章主要介绍了php 404错误的常见原因和处理方法是什么的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇php 404错误的常见原因和处理方法是什么文章都会有所收获,下面我们一起来看看吧。一、常见原因文件或...
    99+
    2023-07-05
  • php产生500错误的原因和解决方法是什么
    这篇文章主要介绍“php产生500错误的原因和解决方法是什么”,在日常操作中,相信很多人在php产生500错误的原因和解决方法是什么问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”php产生500错误的原因和解...
    99+
    2023-07-05
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作