linux挂载ftp错误530
① 登录ftp 出现 530 的错误是什么意思怎么解决
530一般是密码错误的的提示,要是用户名和密码都正确试着用别的FTP登陆
② 如何处理linux中vsftpd 530 login incorrect报错
1.检查/etc/vsftpd/vsftpd.conf配置
代码如下
local_enable=YES
pam_service_name=vsftpd //有人说ubuntu是pam_service_name=ftp(本人未测试)
userlist_enable=YES
2,修改/etc/vsftpd/ftpusers
代码如下
# vim /etc/pam.d/vsftpd //你会发现,拒绝ftpusers里面的用户
auth required pam_listfile.so item=user sense=deny file=/etc/vsftpd/ftpusers onerr=succeed
ftpusers里面是ftp默认拒绝的用户,如果要想系统用户,就把这个用户从ftpusers文件中删除。
代码如下
[root@node1 vsftpd]# cat /etc/vsftpd/ftpusers
# Users that are not allowed to login via ftp
root
bin
#daemon //删除掉就能登录了
adm
lp
sync
。。。。。。。。。省略。。。。。。。。。
在这里要注意,不要把/etc/pam.d/vsftpd里面的deny改成allow,不然你自己建立的用户就会报530 Login incorrect
3,重启vsftpd
代码如下
# /etc/init.d/vsftpd start
③ ftp连接出现530 connection refused unknow ip address
使用的是服务器,不是虚拟主机,确保地址、用户名和密码都正确的情况下
解决方法有二:亲身经历
一、看看iis的ftp的属性里的目录安全性,是否允许你电脑的ip。
二、如果允许,ftp功能关闭再打开。
问题解决。仅供参考。
④ 急!!ftp登录错误,提示 530 not logged in,连接失败 ,,是怎么回事啊 求解!!
因为该帐号限制只有部分许可的ip可以登陆,同样你必须与管理者联系,请他手工添加你的ip。
⑤ linux ftp 530错误怎么回事
首先,如果正在使用vsftpd,可以先把其停掉,命令:service vsftpd stop,接下来需要编辑/etc/xinetd.d/下的gssftp配置文件,文件内容如下:
# default: off
# description: The kerberized FTP server accepts FTP connections
# that can be authenticated with Kerberos 5.
service ftp
{
disable = yes
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/kerberos/sbin/ftpd
server_args = -l -a
log_on_failure += USERID
}
在文件中,我们要修改的内容有:
1、disable = yes 改为 disable =no ,系统默认ftp功能是无效的,修改使ftp功能生效。
2、server_args = -l -a 改为 server_args = -l。
without -a means : *enable weak authentication*
其中表示使用Kerberos 5验证机制,而一般的ftp是不支持该验证机制的。
修改完毕后,将其保存。
3、重启启动xinetd服务。请执行一下的命令(/etc/xinetd.d/):
service xinetd restart
service vsftpd restart
⑥ Linux下设置vsftpd虚拟账号输入密码出现530错误
方法一:
登录出现 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
具体你也可以去看下http://www.linuxprobe.com/chapter-11.html这里有更详细的操作方法希望可以帮到你啊
⑦ linux下VSFTP 530 Permission denied错误的解决方法
这篇文章主要介绍了linux
下VSFTP
530
Permission
denied错误的解决方法,需要的朋友可以参考下
虚拟机装好RedHat后,准备使用filezilla连接,输入IP地址,root用户,密码,快速连接,报错:
530
Permission
denied。
故障排除:
1.首先检查系统是否开启了vsftp服务,如果没有开启,先开启该服务。
方法1.setup--系统服务--自启动服务
方法2.界面设置,service
vsftpd
restart
2.查看配置
vsftpd的配置,配置文件中限定了vsftpd用户连接控制配置。
vsftpd.ftpusers:位于/etc目录下。它指定了哪些用户账户不能访问FTP服务器,例如root等。
vsftpd.user_list:位于/etc目录下。该文件里的用户账户在默认情况下也不能访问FTP服务器,仅当vsftpd
.conf配置文件里启用userlist_enable=NO选项时才允许访问。
vsftpd.conf:位于/etc/vsftpd目录下。来自定义用户登录控制、用户权限控制、超时设置、服务器功能选项、服务器性能选项、服务器响应消息等FTP服务器的配置。
3.配置修改完成后,执行service
vsftpd
restart重启vsftpd服务。
软件教程小编推荐:
彻底查杀机器狗病毒的几种方法介绍
如何清除机器狗病毒
⑧ ftp连接出现530 permission denied怎么解决
1.首先检查系统是否开启了vsftp服务,如果没有开启,先开启该服务。 方法1.setup--系统服务--自启动服务 方法2.界面设置,service vsftpd restart 2.查看配置 vsftpd的配置,配置文件中限定了vsftpd用户连接控制配置。 vsftpd.ftpusers:位于/etc目录下。它指定了哪些用户账户不能访问FTP服务器,例如root等。 vsftpd.user_list:位于/etc目录下。该文件里的用户账户在默认情况下也不能访问FTP服务器,仅当vsftpd .conf配置文件里启用userlist_enable=NO选项时才允许访问。 vsftpd.conf:位于/etc/vsftpd目录下。来自定义用户登录控制、用户权限控制、超时设置、服务器功能选项、服务器性能选项、服务器响应消息等FTP服务器的配置。 3.配置修改完成后,执行service vsftpd restart重启vsftpd服务。 上面就是Linux下出现530 Permission denied报错的解决方法介绍了,当你在进行vsftp操作时出现该报错可使用上面的方法解决,先排除故障配置查看配置,修改配置重启vsftpd即可。
⑨ ftp连不上linux服务器是什么原因呢报530错误
用户名密码错误,或服务器不允许匿名用户登录
root用户缺省也是不允许FTP登录的,需要修改ftpusers和user_list文件
⑩ 关于FTP连接时出现530 Login authentication failed的问题
FTP无法连接原因
检查39000/40000默认ftp端口是否开放;
检查默认FTP端口21是否开放;
如果在阿里安全组里自定义了FTP端口,同时要在宝塔控制面板中设置一致;
检查是否安装了FTP插件,图中两个都可以安装,适用不同FTP软件。
检查FTP密码是否空格
以上是我两年来总结的FTP问题,真心希望能帮到大家,如有遗漏,请高手赐教!