IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

A directory in the pathname was not found - Mount point


IBM Mainframe Forums -> ABENDS & Debugging
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
vasanthz

Global Moderator


Joined: 28 Aug 2007
Posts: 1742
Location: Tirupur, India

PostPosted: Fri Dec 23, 2022 10:31 pm
Reply with quote

Hi,
I am trying to create a file, format it and then mount it at /dev/ path

Code:
//ALCZFS   EXEC PGM=IDCAMS                     
//SYSPRINT DD SYSOUT=*                         
//SYSIN    DD *                               
  ALLOC  -                                     
      DSNAME('OMVS.DEV.ZFS') -                 
      RECORG(LS) -                             
      CYLINDERS SPACE(100 50)  -               
      VOLUME(MAKE03) -                         
      BLKSIZE(4096) -                         
      CATALOG                                 
//*                                           
//FMTZFS   EXEC PGM=IOEAGFMT,REGION=0M,       
//  PARM=('-compat -aggregate OMVS.DEV.ZFS')   
//SYSPRINT DD SYSOUT=*                         
//STDOUT   DD SYSOUT=*                         
//STDERR   DD SYSOUT=*                         
//SYSUDUMP DD SYSOUT=*                         
//CEEDUMP  DD SYSOUT=*                         
//*                                           
//*      MOUNT EXAMPLE                         
//*                                           
//ZFSMNT  EXEC PGM=IKJEFT1B                   
//SYSTSPRT DD  SYSOUT=*                       
//SYSTSIN  DD  *                               
  PROF MSGID WTPMSG                           
  MOUNT FILESYSTEM('OMVS.DEV.ZFS') +           
    TYPE(ZFS) MODE(RDWR) MOUNTPOINT('/dev/') +
    AUTOMOVE                                   
//*                                           



But get the below error in the mount step,
Code:
  MOUNT FILESYSTEM('OMVS.DEV.ZFS') TYPE(ZFS) MODE(RDWR) MOUNTPOINT('/dev/') AUTOMOVE
BPXF135E RETURN CODE 00000081, REASON CODE 0594003D.  THE MOUNT FAILED FOR FILE  SYSTEM OMVS.DEV.ZFS


Manual says
Quote:
003D JRDirNotFound

A directory in the pathname was not found.

Action: One of the directories specified was not found. Verify that the name specified is spelled correctly.


But the directory in the path name is root /. There is no other path.

Could you please help me how to resolve this issue
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> ABENDS & Debugging

 


Similar Topics
Topic Forum Replies
No new posts How I Found a Bug in a FORTRAN Compiler All Other Mainframe Topics 4
No new posts Point and Shoot )PTNS TSO/ISPF 0
No new posts Creating Unix Directory using COBOL i... COBOL Programming 2
No new posts I need a 4 lines block where substrin... DFSORT/ICETOOL 12
No new posts How to remove DECIMAL POINT (.) from ... SYNCSORT 10
Search our Forums:

Back to Top