當前位置:首頁 » 文件管理 » linux掛載ftp錯誤530

linux掛載ftp錯誤530

發布時間: 2022-06-14 07:33:36

① 登錄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無法連接原因

  1. 檢查39000/40000默認ftp埠是否開放;

  2. 檢查默認FTP埠21是否開放;

  3. 如果在阿里安全組里自定義了FTP埠,同時要在寶塔控制面板中設置一致;

  4. 檢查是否安裝了FTP插件,圖中兩個都可以安裝,適用不同FTP軟體。

  5. 檢查FTP密碼是否空格

以上是我兩年來總結的FTP問題,真心希望能幫到大家,如有遺漏,請高手賜教!

熱點內容
出國訪問奪權 發布:2025-01-19 16:57:22 瀏覽:591
vb打開共享文件夾 發布:2025-01-19 16:57:11 瀏覽:484
怎麼查詢手機wifi密碼 發布:2025-01-19 16:41:31 瀏覽:187
linux編輯圖片 發布:2025-01-19 16:37:55 瀏覽:167
sql數據對比 發布:2025-01-19 16:32:09 瀏覽:232
magnet下載ftp 發布:2025-01-19 16:27:07 瀏覽:318
注冊密碼下劃線是什麼意思 發布:2025-01-19 16:23:58 瀏覽:806
ssid哪裡輸入密碼 發布:2025-01-19 16:21:53 瀏覽:365
雲伺服器網速慢 發布:2025-01-19 16:20:17 瀏覽:407
電腦上傳監控 發布:2025-01-19 16:13:16 瀏覽:310