Movatterモバイル変換
[0]ホーム
[RFC Home] [TEXT|PDF|HTML] [Tracker] [IPR] [Info page]
UNKNOWN
Network Working Group John R. PickensRFC # 490 UCSBNIC # 15355 6 March, 1973references RFC # 436 RFC # 477 SURROGATE RJS FOR UCLA-CCN By using UCSB's Network Standard RJS* users can now gain access toUCLA-CCN's RJS without converting to the UCLA protocol. In addition,the need to use and create files in an intermediate host is avoided.For example, TIP users may operate with hot card readers and printersthrough UCSB's Remote Job Server and have their jobs execute at UCLA-CCN. The disadvantages of this scheme as compared to direct connectionsto UCLA are as follows: 1. A small amount of additional JCL is required to route jobs from UCSB to UCLA. 2. A UCSB batch account must be opened. 3. Turnaround time includes waits in UCSB batch queues. 4. The current implementation requires separate submission and retrieval steps. 5. The RJS terminal used for submission/retrieval at UCLA-CCN should not be accessed online until all transfers to/from UCSB are complete.Hopefully, these disadvantages are outweighed by the convenientinterface to standard RJS. Attached is the document which describes this procedure to accessUCLA-CCN._________________________________*RFC #436 announces RJS at UCSB and RFC #477 describes its use.Pickens [Page 1]
RFC 490 SURROGATE RJS FOR UCLA-CCN March 1973 UCLA REMOTE JOB SUBMISSION FROM UCSBIntroduction------------ Users of the IBM 360/75 at UCSB may now route jobs to and fromUCLA-CCN (IBM 360/91). Only the reading, printing, and punching arehandled at UCSB while the scheduling, allocation of resources, andexecution are handled at UCLA. The program described below operates byestablishing operator and data connections with UCLA's Remote JobService through the ARPA Network and issuing operator commands tocontrol the submission and retrieval of jobs. Thus it is possible for auser to run jobs on UCLA's 360/91 almost as if he were at UCLA.Procedure--------- Submission and retrieval are two separate phases which the user mustinitiate for each of his UCLA destined jobs. Usually, two UCSB jobswill be required for the two phases of one UCLA job. Exceptions dooccur using the BATCH options described below and jobs with a guaranteedfast UCLA turnaround (e.g. QUICKRUN jobs.) Commands are issued through JCL to the local process and resultantactions and messages are recorded in the RJS system log on the user'slisting. The user must be aware of the timing of his commands, e.g. arequest to retrieve print output for a specific job will result in anerror condition if the job has not finished executing at UCLA.Available commands are READ, PRINT, PUNCH, STATUS, and TERMID. Effort has been made to provide the user with fairly intelligibleerror diagnostics although this is not always possible. Errorconditions are described in the section "ERRORS".Job Submission-------------- The READ command is used to send jobs to UCLA. It is the defaultcommand if none other is specified. UCLA jobs may be batched togetherunder a single read operation. Great care should be taken to terminatethe batch with the correct delimiter (see DD Cards below) so that anyfollowing non-UCLA jobs won't be sent to UCLA by mistake. A suggestedprocedure, if submitting jobs from the campus computer center, would beto indicate on the job submission card the intended destination. If thejob is accepted by UCLA a message from UCLA will be recorded indicatingthe job name and number of cards received.Pickens [Page 2]
RFC 490 SURROGATE RJS FOR UCLA-CCN March 1973Single Job Retrieval-------------------- PRINT (JOBNAME) and PUNCH (JOBNAME) are used to explicitly fetchprint and punch output, respectively. The UCLA RESET command is used toset all job priorities the same, and then to set the named job'spriority to the highest value. An unknown command, HEREIAM, is used forsynchronization purposes only. If the named job is not ready for outputthe local process will terminate with a timeout error (the current timeris set at one minute).Multiple Job Retrieval---------------------- PRINT (*) and PUNCH (*) are used to fetch all waiting output. Thesecommands should always be preceded by the TERMID command. Users whohave their own RJS terminal assigned to them will use this mode.UCSB Job Control Cards---------------------- EXEC Card The catalogued procedure to executed is named UCLARJS. Parametersare used to specify which functions are to be performed. The generalform of the execute card is: //anyname EXEC UCLARJS, PARM.RJS-'...functions...'PARM Field---------- The following list defines the allowable parameters and theirindicated functions. All parameters are executed in sequence andseparated by commas. READ - Open the reader channel and send 80 column records from the SYSIN data set. PRINT(JOBNAME) - Set indicated job's priority to highest value and retrieve the print output to the SYSPRINT data set. Records over 132 characters are folded to the next line. PRINT (*) - Retrieve all print jobs. PUNCH(JOBNAME) - Set indicated job's priority to highest value and retrieve 80 column punch output to the SYSPUNCH data set.Pickens [Page 3]
RFC 490 SURROGATE RJS FOR UCLA-CCN March 1973 PUNCH (*) - Retrieve all punch jobs. STATUS - Query UCLA about the status of all jobs assigned to this RJS terminal. TERMID(NAME-PASSWORD) - Sign on as named RJS terminal. PASSWORD is optional and should be declared only if the terminal has a password. The local process always signs on initially as NETUCSB.DD Cards-------- 1. Reader - The SYSIN data set should have the following format to be able to send JCL and /* cards: // RJS.SYSIN DD DATA,DLM=$$,DCB=(RECFM=F,LRECL=80,BLKSIZE=80) . . . job(s) . . . $$ (note, this special delimiter is required) 2. Printer - The default RJS.SYSPRINT data set is specified as SYSOUT=A 3. Punch - The default RJS.SYSPUNCH data set is specified as SYSOUT=B 4. RJS log - The default RJS.MESSAGES data set is specified as SYSYOUT=AProblems and Errors------------------- Most problems encountered fall into one of the following categories: 1. UCLA-CCN or ARPANET down. This condition is usually noted when the local process attempts connection with UCLA. The error message is usually "INITIAL CONNECTION OPEN ERROR." 2. RJS terminal in use by a non-UCSB-jobshop process. This can occur if a user submits a job but signs on to his UCLA RJS terminal online prior to the local batch processPickens [Page 4]
RFC 490 SURROGATE RJS FOR UCLA-CCN March 1973 coming into execution. This condition is usually noted by the appearance of "FAILURE OR TIMEOUT IN OPERATOR, PRINT OR PUNCH CHANNEL" with completion code 252. 3. Job not ready to be retrieved. The local process attempts to set the priority of the indicated job but receives no successful response. This condition is also noted by the appearance of "FAILURE OR TIMEOUT IN OPERATOR, PRINT OR PUNCH CHANNEL" with completion code 252. 4. UCLA is unable to retrieve output because of an age-old bug. Unfortunately this condition can occur for very small amounts of output. It is usually noted by the message "BEGINNING RETRIEVAL OF" followed by "(PROBABLE UCLA BUG).. PREVIOUSLY GOOD CONNECTION NOW HAS STATUS = 8". The output in this case is usually lost.Cases 1 through 3 are corrected by waiting and then trying again. Othererror messages may require reference to the NETWORK USER GUIDE orconsultation with Computer Center or Computer Systems Lab personnel.Examples--------1. Submit a job to UCLA-CCN through RJS terminal NETUCSB. //SUBMIT JOB (0000,ROBERTS),'PSYCH BOX' //STEP1 EXEC UCLARJS //RJS.SYSIN DD DATA,DLM=$$,DCB=(RECFM=F,LRECL=80,BLKSIZE=80 //AAA000IC JOB...... . . . . . $$ //2. Retrieve print job AAA000IC from terminal NETUCSB. //RETR JOB (0000,ROBERTS),'PSYCH BOX' //STEP1 EXEC UCLARJS,PARM.RJS='PRINT(AAA000IC)' //Pickens [Page 5]
RFC 490 SURROGATE RJS FOR UCLA-CCN March 19733. Retrieve all prints jobs from terminal NETRAND0 //RETR JOB (0000, ROBERTS),'PSYCH BOX' //STEP1 EXEC UCLARJS,'TERMID(NETRAND0),PRINT(*),STATUS' // [ This RFC was put into machine readable form for entry ] [ into the online RFC archives by Alex McKenzie with ] [ support from GTE, formerly BBN Corp. 9/99 ]Pickens [Page 6]
[8]ページ先頭