使用 NOOP 命令检查 FTP 连接是否有效
Checking FTP connection is valid using NOOP command
我遇到了问题,因为我的一个脚本似乎在大量作业期间与我的 FTP 断开连接。为了解决这个问题,我尝试制作一个如下所示的模块:
def connect_ftp(ftp):
print "ftp1"
starttime = time.time()
retry = False
try:
ftp.voidcmd("NOOP")
print "ftp2"
except:
retry = True
print "ftp3"
print "ftp4"
while (retry):
try:
print "ftp5"
ftp.connect()
ftp.login('LOGIN', 'CENSORED')
print "ftp6"
retry = False
print "ftp7"
except IOError as e:
print "ftp8"
retry = True
sys.stdout.write("\rTime disconnected - "+str(time.time()-starttime))
sys.stdout.flush()
print "ftp9"
我调用函数只使用:
ftp = ftplib.FTP('CENSORED')
connect_ftp(ftp)
但是,我已经跟踪了代码如何使用 print
行运行,并且在第一次使用模块时(甚至在 FTP 连接到之前)我的脚本运行 ftp.voidcmd("NOOP") 并且不排除它,因此最初没有尝试连接到 FTP。
输出为:
ftp1
ftp2
ftp4
ftp success #this is ran after the module is called
我承认我的代码不是最好的或最漂亮的,而且我还没有实现任何东西来确保如果我一直无法重新连接,我不会不断地重新连接,但我无法弄清楚为什么会这样对我的生活没有用,所以我还没有看到扩展模块的意义。这甚至是 connecting/reconnecting 到 FTP 的最佳方法吗?
提前致谢
这 连接 到服务器:
ftp = ftplib.FTP('CENSORED')
因此,NOOP
命令自然会成功,因为它不需要经过身份验证的连接。
您的 connect_ftp
是正确的,只是您需要在 connect
调用中指定主机名。
我遇到了问题,因为我的一个脚本似乎在大量作业期间与我的 FTP 断开连接。为了解决这个问题,我尝试制作一个如下所示的模块:
def connect_ftp(ftp):
print "ftp1"
starttime = time.time()
retry = False
try:
ftp.voidcmd("NOOP")
print "ftp2"
except:
retry = True
print "ftp3"
print "ftp4"
while (retry):
try:
print "ftp5"
ftp.connect()
ftp.login('LOGIN', 'CENSORED')
print "ftp6"
retry = False
print "ftp7"
except IOError as e:
print "ftp8"
retry = True
sys.stdout.write("\rTime disconnected - "+str(time.time()-starttime))
sys.stdout.flush()
print "ftp9"
我调用函数只使用:
ftp = ftplib.FTP('CENSORED')
connect_ftp(ftp)
但是,我已经跟踪了代码如何使用 print
行运行,并且在第一次使用模块时(甚至在 FTP 连接到之前)我的脚本运行 ftp.voidcmd("NOOP") 并且不排除它,因此最初没有尝试连接到 FTP。
输出为:
ftp1
ftp2
ftp4
ftp success #this is ran after the module is called
我承认我的代码不是最好的或最漂亮的,而且我还没有实现任何东西来确保如果我一直无法重新连接,我不会不断地重新连接,但我无法弄清楚为什么会这样对我的生活没有用,所以我还没有看到扩展模块的意义。这甚至是 connecting/reconnecting 到 FTP 的最佳方法吗?
提前致谢
这 连接 到服务器:
ftp = ftplib.FTP('CENSORED')
因此,NOOP
命令自然会成功,因为它不需要经过身份验证的连接。
您的 connect_ftp
是正确的,只是您需要在 connect
调用中指定主机名。