lftp is not working.how to replace lftp with expect utility using same .cfg file.
We have lftp command inside shell file. which is intern calling .cfg file for transferring the file from one server to other.
Below command to not working.
output:
So we installed the expect utility and tested the connection . Able to connect the Destination server and folder. Can you please let me know how to use expect utility to call .cfg file ?
As of now we have .cfg file called by lftp (which is not working).
this is the line in our code to call
and config file has below details.
This is first time , I am working on Shell Script. can you please help.
Regards,
Babu
---------- Post updated at 10:30 PM ---------- Previous update was at 09:56 PM ----------
to add more details on this.
Same lftp is working one of the Linux Server(A). Transferring files to Destination Server(B).( A to B transfer )
Same lftp is not working from Linux Server(C).(C to B transfer failing)
. Is there any configuration needs to done at Destination Server (B) in order to get files from Server (C) ?
Last edited by Don Cragun; 08-09-2017 at 02:04 AM..
Reason: Add CODE tags for config file output.
Does the lftp invocation work from the command line? Or do you get the same errors as in the shell script? Can you use ssh and lftp interactively from the failing client to the server?
Have you tried this slight alteration? lftp is designed to be scriptable; you shouldn't need to use it with expect.
I use below ftp command to push the file from UNIX server to Mainframe system.
(lftp -d -e "set ftp:passive-mode false; put -a ${SPOOLFILE} -o ${FNAME}; exit" -u ${id},${paswd} ${host} ) >> $ftplog
To ftp the file successfully i need to get the out put for FNAME as "'filename'" (double... (5 Replies)
Hello,
I am trying to write a script that will lftp a file. The parameters are being passed in to the script from ETL tool. The put command is not working. put $file_name $tgt_file_name in the function ftpfile(). When I hardcode the file name with path its working. can some one help me... (5 Replies)
Hi,
Below script used for sftp get,
#/bin/bash
USER=xxx
PASS=xxx
HOST=xxx
REMOTE_FILE=$1
LOCAL_FILE_LOC=$2
cd $LOCAL_FILE_LOC
lftp sftp://$USER:$PASS@$HOST:10022 -e "get $REMOTE_FILE; bye"
If file does not exist in sftp server, and file (same as remote file name) exists in local dir,... (4 Replies)
dear all,
I need to get files from ftp when only files consist of words 'EUROPE'
ftp sources in folder /ftp1/ftp2/ftp3/201409
files inside /ftp1/ftp2/ftp3/201409is as below
201409_EUROPE_citizen.txt
201409_EUROPE_natality.txt
201409_EUROPE_occupancy.txt
201409_ASIA_citizen.txt... (1 Reply)
I installed KVM and configured two virtual machines in it server1.example.com(192.168.100.193) and tester1.example.com(192.168.100.230).I want to access server1.example.com from tester1.example.com over lftp.As far as networking is concerned between both I do have some doubts.
I tried ping and... (5 Replies)
Hi Experts,
I am using the below code for lftp with for loop but getting error at line 18.
Not able to understand if am using the for loop wrongly.
#!/bin/bash
FILE='/home/user/d.txt'
FILEName=/home/user/Test/HostName.txt
for HOST in $(awk '{ print $0}' $FILEName);do
... (5 Replies)
Hi all. I want to know, if there is any chance to pass lftp listing to CLI dialog. I want to make an interactive CLI ftp manager, based on lftp.
Version of dialog I use:
root@dlink:~# dialog -v
cdialog (ComeOn Dialog!) version 1.1-20100428 (0 Replies)
Please let me know what is lftp options combination to wait and download a file from target as soon as its gets created. I tried with different options but not able to get it working as I need
any help would be appreciated (4 Replies)
LFTP Mirroring
We are planning to use lftp to mirror some of the files and
directories on to the remote server.
What we exactly want to do is mirror some of the directories and
exclude some of the the directories from "/" i.e. main root. . What
lftp is doing is... (0 Replies)