-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upload hang at 100% #346
Comments
I'm frequently running into a similar, if not the same error. The transfer of a particular file succeeds (100% transfer status and the file is verifyably complete), but the server closes the connection to lftp and lftp hangs itself up in a reconnect loop. |
+1 |
Please include debug logs.
пт, 26 апр. 2019, 21:19 Ji Fang <notifications@github.com>:
… +1
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#346 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAHLWXDBSTEXMGS3PSW532TPSNBT7ANCNFSM4DLXBJLQ>
.
|
+1 |
I stopped having the reconnect loop, but I still get connection terminations (but that is now client independent). For that, luckily, I managed to use the |
+1 |
1 similar comment
+1 |
I have same with version 4.8.4 or wirth 4.9.2 Is only happens i have force use TLS on my firtzbox. Without TLS i have no issue |
@lavv17
With lftp 4.8.4 i got |
I came here because of this problem, too. I don't use SSL/TLS. => Oh, sorry. It works, but it takes a long time. |
when i experienced this, it turned out to be a false negative because of how i was using the command. in my case, i told it a file existed (when it didn't) for a parallelized i setup a script to transfer my solution was to find the circumstances when |
+1 lftp version 4.9.2 Does not work: lftp -c " \
set ftp:ssl-allow true; \
set ftp:ssl-force true; \
set ftp:ssl-protect-data true; \
open -u <username> -e \" \
mirror -X .* -X .*/ --reverse --verbose --delete source_dir/ target_dir/; \
bye\" \
remote_host \
" Does work: lftp -c " \
set ftp:ssl-allow false; \
open -u <username> -e \" \
mirror -X .* -X .*/ --reverse --verbose --delete source_dir/ target_dir/; \
bye\" \
remote_host \
" Although this gives me a workaround, I do not consider it a solution in any sense -.- |
I can confirm this problem. LFTP seems to have been abandoned. I wonder if someone can fix this problem one day. |
same issue here. but only on large files only small workaround could be to set
but this is not nice at all. |
I have a script that upload my files with FTPS. It work well with small files, but on 70mb the transfer end with a message "100% - Waiting for transfer to complete". The file is entirely uploaded but connection stay open and go in timeout forever, and the script don't execute the following command.
I tryed to read manual but I don't have idea which options should I use to solve.
Thanks for your help.
I'm using Debian Jessie package of lftp v. 4.6.0-1+deb8u1.
loglftp.txt
toftps.txt
The text was updated successfully, but these errors were encountered: