email performance tool threshold alerts.

2010-12-08 Thread Willimann, Alan (NIH/CIT) [C]
z/VM Version 5 Release 4.0, Service Level 1002 (64-bit) z/VM V5R4.0 Performance Toolkit. How or where do I find information on setting up performance tool to email me with threshold alerts? Alan Willimann Center for Information Technology National Institute of Health Bethesda, MD 20892-5628

Re: email performance tool threshold alerts.

2010-12-08 Thread Kris Buelens
Look in the Perfkit Guide, SC24-6156-01 chapter 5 (page128). Note that you could use my MAILIT package to create an email from a string in a REXX exec (that is without first writing things in a file). Mailit was explictely created for a monitoring system at my former customer, later SMTP support

Re: Vswitch Grant as a CMD in User's Directory?

2010-12-08 Thread RPN01
The issue with keeping the grants in AUTOLOG1 or in SYSTEM CONFIG is that you have to either continually modify those files every time you create a new Linux image, or you have to keep a separate list of Linux images somewhere for AUTOLOG1 to read (though you probably have to anyway). Putting the

Re: Vswitch Grant as a CMD in User's Directory?

2010-12-08 Thread gclovis
Hi, CP DEFINE LAN have a UNRESTRICTED option, that don't need the grants. My suggestion: If the environment is stable, fix the VSWITCH and GRANTS into SYSTEM CONFIG. If the system is unstable or is in the test phase, test with the unrestricted lan. Only NICDEF changes in directory...

Re: email performance tool threshold alerts.

2010-12-08 Thread Bill Munson
Kris, Is right I have used MAILIT for years to send mail on VM and it is Briliant ! here is our exec from Perfkit - yes it is not so pretty , but it works. /* HIUSRCP EXEC */ /* sendnote exec */ TRACE OFF PARSE ARG MSG USER USERID CPIO CPU R1 R2 R3 R4 R5 R6 SELECT WHEN CPIO = '%CPU'

Re: email performance tool threshold alerts.

2010-12-08 Thread Kris Buelens
If I were you, I'd include all usefull information in the mails' subject, so for example 'EXEC MAILIT TO VMEMAIL TITLE (CPUHOG:' userid cpu '% CPU)', 'TEXT User' USERID 'running at' CPU '% This way, the receiver doesn't even have to open the mail to know what is inside. 2010/12/8 Bill

Re: email performance tool threshold alerts.

2010-12-08 Thread Bill Munson
cool thanx Kris munson 201-418-7588 From: Kris Buelens kris.buel...@gmail.com To: IBMVM@LISTSERV.UARK.EDU Date: 12/08/2010 09:16 AM Subject:Re: email performance tool threshold alerts. Sent by:The IBM z/VM Operating System IBMVM@LISTSERV.UARK.EDU If I were you,

Re: Vswitch Grant as a CMD in User's Directory?

2010-12-08 Thread Lee Stewart
Cool... I'll try that... I can see a use for GRANTs when the define is done by command. You need to know it's really allowed. But if it's in the directory, hopefully only authorized people can update the directory, so why should they have to update 2 things? Thanks all!! Lee On

Re: Vswitch Grant as a CMD in User's Directory?

2010-12-08 Thread Quay, Jonathan (IHG)
I don't. I don't have any human beings on my systems except for system programmers that have full authority anyway. Having to GRANT linux servers is an extra thing that has to be managed. I would like to define a vswitch as unrestricted. -Original Message- From: The IBM z/VM Operating

Re: Vswitch Grant as a CMD in User's Directory?

2010-12-08 Thread Tom Huegel
Or maybe put a password on the VSWITCH that would allow a class G user to connect if he knew the password. On Wed, Dec 8, 2010 at 8:15 AM, Quay, Jonathan (IHG) jonathan.q...@ihg.comwrote: I don't. I don't have any human beings on my systems except for system programmers that have full

Re: Vswitch Grant as a CMD in User's Directory?

2010-12-08 Thread Alan Altmark
On Wednesday, 12/08/2010 at 08:31 EST, RPN01 nix.rob...@mayo.edu wrote: Is there anyone out there that actually gains security from CP users not being granted onto their vSwitches? How many people would like to be able to define a vSwitch as open to the public or not requiring a grant to be

Re: Vswitch Grant as a CMD in User's Directory?

2010-12-08 Thread David Boyes
On 12/8/10 4:15 PM, Quay, Jonathan (IHG) jonathan.q...@ihg.com wrote: I don't. I don't have any human beings on my systems except for system programmers that have full authority anyway. Having to GRANT linux servers is an extra thing that has to be managed. I would like to define a vswitch as

Re: Vswitch Grant as a CMD in User's Directory?

2010-12-08 Thread RPN01
But, should you have to have an external security manager for a system where the majority of users are disconnected guest operating systems? Most of today's z/VM systems have a bare minimum of real human users. CP is the security manager for us, and it's sufficient to control the wild ramblings

Re: Vswitch Grant as a CMD in User's Directory?

2010-12-08 Thread Tom Huegel
It is a hard sell to management to buy an ESM if there is no audit requirement. On Wed, Dec 8, 2010 at 11:34 AM, David Boyes dbo...@sinenomine.net wrote: On 12/8/10 4:15 PM, Quay, Jonathan (IHG) jonathan.q...@ihg.com wrote: I don't. I don't have any human beings on my systems except for

Re: Vswitch Grant as a CMD in User's Directory?

2010-12-08 Thread George Henke/NYLIC
If you are a publicly traded company and z/VM is running production without an ESM or its equivalent, then you have a material control weakness in your segregation of duties (SOD) which can lead to more than a 10% error in your financial statements and by Act of Congress, Sarbanes Oxley, aka

FTP within REXX EXEC

2010-12-08 Thread Steve Perez
Hello Listers, I have written an REXX exec to file transfer monitor data files from our z/VM Lpar to our z/OS Lpar using FTP. The following is an excerpt from that code: push 'quit' push put TEST.FILE.A 'my.zos.dsn' ... other ftp

Re: FTP within REXX EXEC

2010-12-08 Thread Bob Bates
I think what you really want here is BATFTP. It codes like REXX and allows you to deal with return codes from every step. I've had it for a long time and don't remember where I got it originally. Bob Bates robert.ba...@wellsfargo.com This message may contain confidential and/or privileged

Re: FTP within REXX EXEC

2010-12-08 Thread Hughes, Jim
Get a copy of VMFTP from the IBM VM downloads page. You will not regret it. It allows you to write rexx ftp scripts and you can check return codes as well as look at the results of each ftp command in case you need to determine what to do next. Jim Hughes 603-271-5586 It is

Re: FTP within REXX EXEC

2010-12-08 Thread Perez, Steve S
I cannot find VMFTP on the IBM VM download page. http://www.vm.ibm.com/download/packages/ Thanks, Steve -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Hughes, Jim Sent: Wednesday, December 08, 2010 4:09 PM To:

Re: FTP within REXX EXEC

2010-12-08 Thread Mike Walter
I recommend the very flexible VMFTP shareware. You write macros as REXX execs, giving you complete control of the FTP session. For example, we sometimes send VMDUMPs to a particular ISV (each ISV has its own exec/macro). Some want the VMDUMP COPYFILE (PACKed before sending (doing so

Re: FTP within REXX EXEC

2010-12-08 Thread Schuh, Richard
Try Fran Hensler's site http://zvm.sru.edu/~DOWNLOAD/ Regards, Richard Schuh -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Perez, Steve S Sent: Wednesday, December 08, 2010 2:37 PM To: IBMVM@LISTSERV.UARK.EDU Subject:

Re: FTP within REXX EXEC

2010-12-08 Thread Perez, Steve S
Hi Mike, Thanks for the info. I would appreciate a sample to give me a quick understanding of how it works. Thanks to ALL who have responded. Kind Regards, Steve -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Mike Walter Sent:

Re: Vswitch Grant as a CMD in User's Directory?

2010-12-08 Thread Alan Altmark
On Wednesday, 12/08/2010 at 02:35 EST, David Boyes dbo...@sinenomine.net wrote: OTOH, I think this also argues for a bigger step: for IBM to supply a default ESM and quit having to do it two different ways. We can always replace the default one with something better, but there's a lot of

Re: Vswitch Grant as a CMD in User's Directory?

2010-12-08 Thread Alan Altmark
On Wednesday, 12/08/2010 at 03:11 EST, RPN01 nix.rob...@mayo.edu wrote: But, should you have to have an external security manager for a system where the majority of users are disconnected guest operating systems? Yes. Most of today's z/VM systems have a bare minimum of real human users. CP