Re: [U2] A few simple questions

2007-12-07 Thread Mats Carlid

I'd just
chmod g+x master
and add uvadm to the guest list of the group
that owns the master file by editing the /etc/group file.

We run root as the uv admin here - don't know if it's typical or not...
-- mats


Oaks, Harold skrev:

snip
However, in ...ibm/uv/bin the file 'master' which is
executed by this command has owner root and permissions are set to
rwx--.  In other words, only root can execute this command on our
system and logging in as uvadm is not good enough.  Is this typical for
you Universe users?  Or did you change the permissions on this
executable?  Is there some other way uvadm can log out users?

---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] A few simple questions

2007-12-06 Thread Jerry Banker
When your Universe was installed more than likely the installer picked
root as the administrator.

Jerry Banker
Sr Programmer Analyst
Affiliated Acceptance Corp
Sunrise Beach, MO
1-800-233-8483
www.affiliated.org

 -Original Message-
 From: Oaks, Harold [mailto:[EMAIL PROTECTED]
 Sent: Thursday, December 06, 2007 3:15 PM
 To: u2-users@listserver.u2ug.org
 Subject: [U2] A few simple questions
 
 I am a fairly new Universe user.  We are running on hpux 10.2
 
 I have several questions, but only one here-
 
 I know the MASTER OFF command can be used to log out a user, i.e.
 MASTER OFF 132 logs off user 132.   The on-line help says one must
be
 a Universe Administrator to run this command, and be in the home
account
 for Universe.   However, in ...ibm/uv/bin the file 'master' which is
 executed by this command has owner root and permissions are set to
 rwx--.  In other words, only root can execute this command on our
 system and logging in as uvadm is not good enough.  Is this typical
for
 you Universe users?  Or did you change the permissions on this
 executable?  Is there some other way uvadm can log out users?
 
 
 Harold D. Oaks
 Sr. Analyst/Programmer
 Office of the Budget and Information Systems
 Clark County, Washington
 ph: (360) 397-6121 x4132
 fax: (360) 397-2342
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] A few simple questions

2007-12-06 Thread Bertrand, Ron
Either you su to root, login as root or (if setup) do a sudo uv to enter
universe as root and then run the master off. 
I built a program to do the sudo piece for me. Among other things! 
This the GOSUB that does the work.

LOGOFF.MSG = ''
ERR.MSG = ''
VOC.REC = ''
VOC.ID = 'TEMP.LOGOFF.USER'
VOC.REC1 = 'PA'
IF (SELECTED.USER.ID) THEN
  VOC.REC2 = UNLOCK USER :SELECTED.APP.ID: ALL
  VOC.REC3 = MASTER OFF :SELECTED.APP.ID
  WRITE VOC.REC ON VOC.FILE,VOC.ID THEN
UV.CONTROL.CMDD = sudo -u root /usr/ibm/uv/bin/uv TEMP.LOGOFF.USER
EXECUTE UTL1SHELL :UV.CONTROL.CMDD CAPTURING LOGOFF.MSG
  END ELSE
ERR.MSG = 'Unable to create Master off voc pointer'
  END
END ELSE
  ERR.MSG = 'No user selected'
END 
IF (ERR.MSG) THEN
  GOSUB DISPLAY.ERROR.MSG
END

Ron Bertrand
Group Health
ISD/Lab

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jerry Banker
Sent: Thursday, December 06, 2007 1:37 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] A few simple questions

When your Universe was installed more than likely the installer picked
root as the administrator.

Jerry Banker
Sr Programmer Analyst
Affiliated Acceptance Corp
Sunrise Beach, MO
1-800-233-8483
www.affiliated.org

 -Original Message-
 From: Oaks, Harold [mailto:[EMAIL PROTECTED]
 Sent: Thursday, December 06, 2007 3:15 PM
 To: u2-users@listserver.u2ug.org
 Subject: [U2] A few simple questions
 
 I am a fairly new Universe user.  We are running on hpux 10.2
 
 I have several questions, but only one here-
 
 I know the MASTER OFF command can be used to log out a user, i.e.
 MASTER OFF 132 logs off user 132.   The on-line help says one must
be
 a Universe Administrator to run this command, and be in the home
account
 for Universe.   However, in ...ibm/uv/bin the file 'master' which is
 executed by this command has owner root and permissions are set to 
 rwx--.  In other words, only root can execute this command on our 
 system and logging in as uvadm is not good enough.  Is this typical
for
 you Universe users?  Or did you change the permissions on this 
 executable?  Is there some other way uvadm can log out users?
 
 
 Harold D. Oaks
 Sr. Analyst/Programmer
 Office of the Budget and Information Systems Clark County, Washington
 ph: (360) 397-6121 x4132
 fax: (360) 397-2342
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/