View previous topic :: View next topic
|
Author |
Message |
sirbaros
New User
Joined: 25 Oct 2015 Posts: 1 Location: USA
|
|
|
|
Hello,
I am getting an error (reason code = 05190050) when I am trying to execute the command TSO OMVS in the TSO command line.
I figured out that the problem occurs because there is no user directoy existing. I was trying to create a user direcoty in OMVS but I need to get OMVS running first. How can I create a user directory without OMVS?
Error:
IBM
Licensed Material - Property of IBM
5650-ZOS Copyright IBM Corp. 1993, 2013
(C) Copyright Mortice Kern Systems, Inc., 1985, 1996.
(C) Copyright Software Development Group, University of Waterloo, 1989.
FSUM2384 No session was started. The system cannot set the current working directory to the specified home directory for this user
ID.
Function = chdir(), directory name = '/u/msmith', return value = -1, errno = 129 (X'00000081'), reason code = 05190050, message = 'E
DC5129I No such file or directory.' |
|
Back to top |
|
 |
steve-myers
Active Member
Joined: 30 Nov 2013 Posts: 917 Location: The Universe
|
|
|
|
Contact your security support. I'm not certain about this, but I think you need an OMVS segment for your userid (if your site uses RACF) or the equivalent if your site uses an alternate security product like Top Secret or ACF2. Part of OMVS authorization is a "home directory." Another possibility is the "home directory" was not created. The directory name in your message looks like a "home directory." |
|
Back to top |
|
 |
Robert Sample
Global Moderator

Joined: 06 Jun 2008 Posts: 8683 Location: Dubuque, Iowa, USA
|
|
|
|
As was mentioned, contact your site support group. If your site uses RACF, you MUST have an OMVS segment with a valid home directory. I suspect your home directory does not exist -- which would definitely be a problem for your site support group. The issue could be that /u/msmith does not exist, or it could be that /u/msmith does exist but your TSO user id does not have access to the directory, or it could be that /u does not allow you to access that directory (which would prevent you from getting to /u/msmith) ... etc. Your site support group can sort out the issue(s) and resolve the problem -- there's not really anything you can do unless you have authority to change your RACF (or other security package) profile. |
|
Back to top |
|
 |
Willy Jensen
Active Member

Joined: 01 Sep 2015 Posts: 660 Location: Denmark
|
|
|
|
Try to use the ISHELL command specifying your home dir. ISHELL will ask you if you want to create it (even for a homedir I think). Of course this only works if you have the rights to do so. |
|
Back to top |
|
 |
prino
Senior Member

Joined: 07 Feb 2009 Posts: 1294 Location: Vilnius, Lithuania
|
|
|
|
Willy Jensen wrote: |
Try to use the ISHELL command specifying your home dir. ISHELL will ask you if you want to create it (even for a homedir I think). Of course this only works if you have the rights to do so. |
ISHELL works, well sort-of on "that" system, and gets you into(?) OMVS, need to explore further to see if we can restore it somehow, if you have more experience with it, PM me! |
|
Back to top |
|
 |
Willy Jensen
Active Member

Joined: 01 Sep 2015 Posts: 660 Location: Denmark
|
|
|
|
I'm not really a USS person. I had another thought - you might try BPXBATCH like below. Not sure if that requires an OMVS segment though.
//EXEC EXEC PGM=BPXBATCH
//STDOUT DD SYSOUT=*
//STDPARM DD *
sh ;
mkdir /xxx &&
chmod <userid> /xxx |
|
Back to top |
|
 |
|