| IBM MAINFRAME HELP & SUPPORT FORUMS Technical Forums for IBM Mainframe Applications like COBOL, JCL, CICS, DB2, FileAid, DFSORT, Endevor, Xpediter, CoolGen, CA-7&11, AbendAid, IMS, IDMS, PL/I, MqSeries, SyncSort, Assembler, ChangeMan, Easytrieve, InterTest, REXX, CLIST etc...
|
| View previous topic :: View next topic |
| Author |
Message |
sushanth bobby
Joined: 29 Jul 2008
Posts: 188
Location: INDIA
|
| Posted: Tue Sep 02, 2008 6:23 pm Post subject: FTP JOB password error |
|
|
Hi,
I am getting password error in my FTP job.
This is the JCL
Code: //HXSULLZ JOB (T,TEST),'TRANSFER',MSGCLASS=X,CLASS=C,NOTIFY=HXSULL
//*****************************************************
//FTPGET1 EXEC FTPEXEC2
//*****************************************************
//INPUT DD *
TYPE A
MODE S
CD USERS/KEANE/HXSULL
PASSWORD JUN2008
PUT 'HXSULL.JCL(EMAILMF)' EMAIL
CLOSE
QUIT
/*
This is the error is get in the SPOOL
Code: EZA1554I Connecting to: 10.240.10.27 port: 21.
220 Microsoft FTP Service
EZA1701I >>> USER CORP/
331 Password required for CORP/.
EZA1789I PASSWORD:
EZA1701I >>> PASS
530 User CORP/ cannot log in.
EZA1735I Std Return Code = 26530, Error Code = 00011
EZA1701I >>> QUIT
221
Am i giving the password in the wrong place. |
|
| Back to top |
|
Kevin Wailes
Joined: 29 Aug 2008
Posts: 12
Location: UK
|
| Posted: Tue Sep 02, 2008 6:40 pm Post subject: Reply to: FTP JOB password error |
|
|
Userid and password should be the first 2 lines after //INPUT :-
//INPUT DD *
userid
password
cd....
etc
etc |
|
| Back to top |
|
Robert Sample
Joined: 06 Jun 2008
Posts: 943
Location: Atlanta, GA
|
| Posted: Tue Sep 02, 2008 6:55 pm Post subject: |
|
|
| You're giving the user id and password in the right place, so obviously your PROC (which you should provide for full problem analysis) has the right pieces in the right place. However, the error message is telling you that either CORP/ is not a valid user id on the remote system, or the password in your PROC is not the correct password for CORP/. Only you can determine which is the case by either testing or asking your coworkers. |
|
| Back to top |
|
| |
THIS IS AN ARCIVE FORUM IN READ ONLY MODE. IF YOU WANT TO ASK YOUR DOUBTS USE THE ACTUAL FORUM
|