Re: [U2] logging

2010-03-17 Thread Steve Romanow

On 3/17/2010 3:00 PM, u2-users-requ...@listserver.u2ug.org wrote:


Message: 5
Date: Tue, 16 Mar 2010 12:46:06 -0700
From: Bill Haskettwphask...@advantos.net
To: U2 Users Listu2-users@listserver.u2ug.org
Subject: Re: [U2] UD - Error Logging
Message-ID:4b9fdffe.9010...@advantos.net
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Steve:

What's wrong with syslog?  We use Windows.  I don't have a problem with
UD logging to the event log, but many applications log to their own
standard area.  UD logging needs to be configured, so having that in the
same area would be nice too.  cross-platform?

I suspect, all U2 logging should configure in one location/directory and
write to one location/directory.  Every logging needs archiving and I
understand @UDTHOME/bin/saved_logs does that, although
@UDTHOME/logs/saved_logs would be a better location.  It could be nice
to have a structure like:

@UDTHOME
+ config
+  logs
 + saved_logs

...and one could have an environment variable names @UDTCONF and
@UDTLOGS where one could offload these directories somewhere else.

Bill


Steve Romanow said the following on 3/16/2010 12:05 PM:
   

Nothing prevents us from using syslog right?  Ive been thinking about
logging a lot lately.

Specifically, syslog-ng or rsyslog.

Any unix db should log to syslog.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
 


   

syslog is available for win32.  See Snare, Kiwilog (part of SolarWinds)

Here is a good resource.  http://www.loganalysis.org/windows-to-syslog/


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] logging

2010-03-17 Thread Steve Romanow

On 3/17/2010 3:00 PM, u2-users-requ...@listserver.u2ug.org wrote:

Message: 2
Date: Tue, 16 Mar 2010 12:12:59 -0700
From: Henry Ungerhun...@hitech.com
To: 'U2 Users List'u2-users@listserver.u2ug.org
Subject: Re: [U2] UD - Error Logging
Message-ID:1e00bc03-fb77-4ca1-b5fb-798317617...@hitech.com
Content-Type: text/plain;   charset=iso-8859-1

We use syslog in UniData and UniVerse to log all kinds of application events.

Best regards,

Henry

Henry P. Unger
Hitech Systems, Inc.
http://www.hitech.com

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Steve Romanow
Sent: Tuesday, March 16, 2010 12:06 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] UD - Error Logging

Nothing prevents us from using syslog right?  Ive been thinking about
logging a lot lately.

Specifically, syslog-ng or rsyslog.

Any unix db should log to syslog.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



   

Henry,
I've got everything worked out Except actually writing to the log.  My 
plan is to make a single canned routine that will take Label and 
Message.  It needs to check/get the current debug level from somewhere 
(named common, control record, not sure).

How are you writing?

I think I am going to settle on rsyslog.  I want to setup a central 
logging server to log first by date, then by host so I can keep logs 
clean using any number of tools.


I was going to use syslog-ng, but:
   1, i got advice not to replace aix's syslog, not necessary, just 
forward it to remote.
   2, i was going to use centos in a vm, however it doesnt have an 
official syslog build (it may now, but centos is not my first choice)
   3, rsyslog looks good, and is the default on ubuntu-server.  A jeos 
vm fits into this role well, since it has almost no services enabled or 
installed.  Just logging is all I want.


What do you use for analysis?  Splunk?  LogMuncher?

Regards,

Steve

Steve
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] logging

2010-03-17 Thread Henry Unger
Hi Steve,

We've defined a simple interface to syslog() that is called from Basic with the 
priority, a message format, and four parameters.

The C part:

void SYSLOG(int priority, const char *message,  const char *arg1, const char 
*arg2, const char *arg3, const char *arg4 )
{
   syslog( priority, message, arg1, arg2, arg3, arg4 );
}

The Basic part:

EQU LOG.WARNING TO 4
EQU LOG.USERTO 8

syslog = '$SYSLOG'
priority = LOG.USER + LOG.WARNING
call @syslog( priority, 'arg1 %s arg2 %s arg3 %s arg4 %s', arg1, arg2, arg3, 
arg4 )

We use grep for analysis. :)

Best regards,

Henry

Henry P. Unger
Hitech Systems, Inc.
http://www.hitech.com

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Steve Romanow
Sent: Wednesday, March 17, 2010 12:17 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] logging

Henry,


I've got everything worked out Except actually writing to the log.  My 
plan is to make a single canned routine that will take Label and 
Message.  It needs to check/get the current debug level from somewhere 
(named common, control record, not sure).

How are you writing?

I think I am going to settle on rsyslog.  I want to setup a central 
logging server to log first by date, then by host so I can keep logs 
clean using any number of tools.

I was going to use syslog-ng, but:
1, i got advice not to replace aix's syslog, not necessary, just 
forward it to remote.
2, i was going to use centos in a vm, however it doesnt have an 
official syslog build (it may now, but centos is not my first choice)
3, rsyslog looks good, and is the default on ubuntu-server.  A jeos 
vm fits into this role well, since it has almost no services enabled or 
installed.  Just logging is all I want.

What do you use for analysis?  Splunk?  LogMuncher?

Regards,

Steve

Steve
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] logging

2010-03-17 Thread Steve Romanow

Wally,

Something that I miss in unidata that I seem to remember from Universe 
is the rotating log of the last one hundred errors.  It has been many 
years, but that was a nice concise resource for seeing benign things 
such as typos at ECL, but also had info about distributed files, key 
problems, etc.


Steve
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] Terminal Emulator and Telnet Client for a MacBook Pro

2010-03-17 Thread Dave Taylor
Does anyone have a recommendation for a terminal emulator and telnet client for 
a MacBook Pro or any MAC OS X operating system that will connect to 
Universe/Unidata?

Thanks,

Dave Taylor
Sysmark Information Systems, Inc.
49 Aspen Way
Rolling Hills Estates, CA 90274
(O) 800-SYSMARK (800-797-6275)
(F) 310-377-3550
(C) 310-561-5200
www.sysmarkinfo.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [NEWSENDER] - Terminal Emulator and Telnet Client for a MacBook Pro - Message is from an unknown sender

2010-03-17 Thread Ron White
Might have a look at Carnation Software.   www.carnationsoftware.com

Ron White

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dave Taylor
Sent: Wednesday, March 17, 2010 4:33 PM
To: u2-users@listserver.u2ug.org
Subject: [NEWSENDER] - [U2] Terminal Emulator and Telnet Client for a
MacBook Pro - Message is from an unknown sender

Does anyone have a recommendation for a terminal emulator and telnet client
for a MacBook Pro or any MAC OS X operating system that will connect to
Universe/Unidata?

Thanks,

Dave Taylor
Sysmark Information Systems, Inc.
49 Aspen Way
Rolling Hills Estates, CA 90274
(O) 800-SYSMARK (800-797-6275)
(F) 310-377-3550
(C) 310-561-5200
www.sysmarkinfo.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Terminal Emulator and Telnet Client for a MacBook Pro

2010-03-17 Thread Symeon Breen
I recommend you buy a pc and use that instead 



Sorry - i just don't like apple .

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dave Taylor
Sent: 17 March 2010 21:33
To: u2-users@listserver.u2ug.org
Subject: [U2] Terminal Emulator and Telnet Client for a MacBook Pro

Does anyone have a recommendation for a terminal emulator and telnet client
for a MacBook Pro or any MAC OS X operating system that will connect to
Universe/Unidata?

Thanks,

Dave Taylor
Sysmark Information Systems, Inc.
49 Aspen Way
Rolling Hills Estates, CA 90274
(O) 800-SYSMARK (800-797-6275)
(F) 310-377-3550
(C) 310-561-5200
www.sysmarkinfo.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Terminal Emulator and Telnet Client for a MacBook Pro

2010-03-17 Thread Rick Nuckolls
Apple does ship a vt100 telnet client with their os.  It is in the  
utilities folder and is called Terminal.

-Rick

On Mar 17, 2010, at 2:57 PM, Symeon Breen syme...@gmail.com wrote:

 I recommend you buy a pc and use that instead



 Sorry - i just don't like apple .

 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org
 [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dave Taylor
 Sent: 17 March 2010 21:33
 To: u2-users@listserver.u2ug.org
 Subject: [U2] Terminal Emulator and Telnet Client for a MacBook Pro

 Does anyone have a recommendation for a terminal emulator and telnet  
 client
 for a MacBook Pro or any MAC OS X operating system that will connect  
 to
 Universe/Unidata?

 Thanks,

 Dave Taylor
 Sysmark Information Systems, Inc.
 49 Aspen Way
 Rolling Hills Estates, CA 90274
 (O) 800-SYSMARK (800-797-6275)
 (F) 310-377-3550
 (C) 310-561-5200
 www.sysmarkinfo.com
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Terminal Emulator and Telnet Client for a MacBook Pro

2010-03-17 Thread Clifton Oliver
Hi, Dave.

I use iTerm. It's free (in both senses of the word). 
http://iterm.sourceforge.net/

Regards,

Clif

-- 
W. Clifton Oliver, CCP
CLIFTON OLIVER  ASSOCIATES
Tel: +1 619 460 5678Web: www.oliver.com


On Mar 17, 2010, at 2:32 PM, Dave Taylor wrote:

 Does anyone have a recommendation for a terminal emulator and telnet client 
 for a MacBook Pro or any MAC OS X operating system that will connect to 
 Universe/Unidata?
 
 Thanks,
 
 Dave Taylor
 Sysmark Information Systems, Inc.
 49 Aspen Way
 Rolling Hills Estates, CA 90274
 (O) 800-SYSMARK (800-797-6275)
 (F) 310-377-3550
 (C) 310-561-5200
 www.sysmarkinfo.com
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Terminal Emulator and Telnet Client for a MacBook Pro

2010-03-17 Thread Clifton Oliver
Aw, you're just jealous 'cause we get to use a real operating system.

;-)


On Mar 17, 2010, at 2:57 PM, Symeon Breen wrote:

 I recommend you buy a pc and use that instead 
 
 
 
 Sorry - i just don't like apple .
 
 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org
 [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dave Taylor
 Sent: 17 March 2010 21:33
 To: u2-users@listserver.u2ug.org
 Subject: [U2] Terminal Emulator and Telnet Client for a MacBook Pro
 
 Does anyone have a recommendation for a terminal emulator and telnet client
 for a MacBook Pro or any MAC OS X operating system that will connect to
 Universe/Unidata?
 
 Thanks,
 
 Dave Taylor
 Sysmark Information Systems, Inc.
 49 Aspen Way
 Rolling Hills Estates, CA 90274
 (O) 800-SYSMARK (800-797-6275)
 (F) 310-377-3550
 (C) 310-561-5200
 www.sysmarkinfo.com
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
 
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Terminal Emulator and Telnet Client for a MacBook Pro

2010-03-17 Thread Brawn, Cameron
We use Terminal - Built into the OS.  Check Applications - Utilities
- Terminal (http://en.wikipedia.org/wiki/Apple_Terminal)

It is only a simple emulator, but it works for us.
 

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dave Taylor
Sent: Thursday, 18 March 2010 8:33
To: u2-users@listserver.u2ug.org
Subject: [U2] Terminal Emulator and Telnet Client for a MacBook Pro

Does anyone have a recommendation for a terminal emulator and telnet
client for a MacBook Pro or any MAC OS X operating system that will
connect to Universe/Unidata?

Thanks,

Dave Taylor
Sysmark Information Systems, Inc.
49 Aspen Way
Rolling Hills Estates, CA 90274
(O) 800-SYSMARK (800-797-6275)
(F) 310-377-3550
(C) 310-561-5200
www.sysmarkinfo.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__

**
 

This email and any attachments may be confidential and legally privileged. 

Please notify the sender immediately if you received this message in error. 

Please do not delete or alter this notice. 

**
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] I'm looking for PICK, Universe Unidata professionals for nationwide openings...

2010-03-17 Thread Don
1) I do not appreciate the unsolicited email.

2) DON'T send an email with NO BODY and an attachment that is just a
freaking word document that you could have typed in body of the email.

3) The use generic free email addresses of roy...@att.net and
roycontre...@charter.net is very unprofessional. You should really spend a
hundred or two and get a real domain and email address for your company.

4) You list NO COMPANY INFORMATION and/or ADDRESSS.

5) You should not harvest email addresses from the U2UG.org website. If you
want to recruit join the email list.

6) This response has been posted on the U2UG email list to warn other
members you may spam.

7) I will not now, nor in the future, be in need your services.


 From: Roy Contreras [mailto:royc...@att.net] 
 Sent: Wednesday, March 17, 2010 2:35 PM
 To: x...@xx.xxx
 Subject: I'm looking for PICK, Universe  Unidata professionals for
nationwide openings...

 
 Text of Word Attachment:

Pick/Unix Personnel Agency

My name is Roy Contreras and I run a Company called Pick/Unix Personnel. I
find positions for Pick, Unidata,  Universe, UNIX and other Pick related
professionals, nationally. If you are open to hearing about new positions
available or know of anyone who is considering other opportunities, please
let me know. I currently have full-time and consulting position available. I
can be contacted via e-mail –roycontre...@charter.net or at (817) 449-2038. 
Thank You.

Roy Contreras



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users