View previous topic :: View next topic |
Author |
Message |
jim.dillon@sentry.com Beginner
Joined: 28 Aug 2020 Posts: 9 Topics: 4
|
Posted: Wed Mar 31, 2021 3:46 pm Post subject: Access to issue the DUMP MVS command using the TSO CONSOLE |
|
|
I am attempting to issue the dump command using the TSO REXX CONSOLE interface using a command like
"CONSOLE SYSCMD(DUMP COMM=(FTP ISSUE)) CART(cartHandle)" and I get message " IEE345I DUMP AUTHORITY INVALID, FAILED BY MVS". I can issue the DUMP command from an EJES console and being a systems programmer I thought I had absolute authority. No RACF ICH408I message is generated.
Any ideas where I might need to give myself more authority? |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
Posted: Wed Mar 31, 2021 8:57 pm Post subject: |
|
|
jim.dillon@sentry.com,
Couple of things to check.
1. Are you authorized to issue operator commands from REXX? You can try the command to the class
Code: |
SETROPTS RACLIST(OPERCMDS)
|
2. Are you trying to write to a tape as I see reference to CART? If so you probably do NOT have MOUNT authority for the tape from TSO environment. If that is the case then you need to run the rexx exec via IRXJCL instead of IKJEFT01. _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
jim.dillon@sentry.com Beginner
Joined: 28 Aug 2020 Posts: 9 Topics: 4
|
Posted: Thu Apr 01, 2021 8:13 am Post subject: |
|
|
Per the manual, "The command and response token (CART) is a keyword on the TSO/E CONSOLE command and an argument on the GETMSG external function"
The command you are suggesting is a TSO command and not an MVS command. I am trying to issue commands to the system and then interrogate the response.
Jim |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
Posted: Thu Apr 01, 2021 9:32 am Post subject: |
|
|
jim.dillon@sentry.com wrote: | The command you are suggesting is a TSO command and not an MVS command. I am trying to issue commands to the system and then interrogate the response.
Jim |
jim,
You are issuing MVS commands from a REXX exec which is executing under IKJEFT01 (the TMP) , so that environment needs the authority to issue the MVS commands and hence that suggestion to allow the operator commands. _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
jim.dillon@sentry.com Beginner
Joined: 28 Aug 2020 Posts: 9 Topics: 4
|
Posted: Thu Apr 01, 2021 9:43 am Post subject: |
|
|
Kolusu,
I received message 'ICH14063I SETROPTS command complete.'. I didn't see the output but then I didn't get an error on the command either.
Jim |
|
Back to top |
|
|
|
|