Re: [U2] Verify Universe - was [U2] UniObjects and Triggers

2004-11-24 Thread Mats Carlid
OK I'll bite ( again )

yes   the   uvhome/bin/csum script  does check the checksums saved from
the installation  'tape' .
Usage:
cd to uvhome
(bin/)csumlistOfGroups

where   the list is one or more of
 DOCIC OBJSTARTUPUVODBC 
 FILESIZE   JDBC   PORTINGUCI   
DEVELOPGCIMAIN   QA UOJ   

HTH
-- mats


Tom Dodds wrote:

>In following Mats lead and poking around in /.../uv/bin there is a script
>called csum that seems to do what you want to do, we all want to do.  Not
>being a script writer myself we will need a script reader to look at this
>and verify that it really does what I think it does.
>
>Script reader anyone??
>/.../uv/bin/csum
>
>Tom Dodds
>[EMAIL PROTECTED]
>630-235-2975 Cell
>708-482-4510 Office
> 
>
>
>-Original Message-
>From: [EMAIL PROTECTED]
>[mailto:[EMAIL PROTECTED] On Behalf Of Mats Carlid
>Sent: Wednesday, November 24, 2004 2:40 AM
>To: [EMAIL PROTECTED]
>Subject: Re: [U2] Verify Universe - was [U2] UniObjects and Triggers
>
>
>Sara Burns wrote:
>
>  
>
>>We have solved our problem with the UniObjects by re-installing 
>>UniVerse after we found the checksum for uvapi_slave was different on 
>>our two machines.
>>
>>Is there any way to verify that the UniVerse binaries are correct?
>>
>>This would have saved us many hours of testing, red herrings and 
>>general desperation.  There was nothing visible at the file level which 
>>indicated the file had been updated, only the checksum.  We have been 
>>having disk errors on the machine and have now found that these 
>>binaries are on a mirrored set showing errors.  That was a surprise as 
>>we thought they were on a different disk array.
>>
>>AIX 5.2 ML_01, UniVerse 10.0.11
>>
>>Sara Burns
>>
>> 
>>
>>
>>
>Yes,
>
>when you install uv   a checksum check is performed and the checksums
> are kept in .../uv/checksums
> You'll find the code to rerun the check in one of the installation 
>scripts (uv.install?).
>
>If they could be corrput reload them from the installation medium.
>
>HTH
>-- mats
>---
>u2-users mailing list
>[EMAIL PROTECTED]
>To unsubscribe please visit http://listserver.u2ug.org/
>---
>u2-users mailing list
>[EMAIL PROTECTED]
>To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Verify Universe - was [U2] UniObjects and Triggers

2004-11-24 Thread Tom Dodds
In following Mats lead and poking around in /.../uv/bin there is a script
called csum that seems to do what you want to do, we all want to do.  Not
being a script writer myself we will need a script reader to look at this
and verify that it really does what I think it does.

Script reader anyone??
/.../uv/bin/csum

Tom Dodds
[EMAIL PROTECTED]
630-235-2975 Cell
708-482-4510 Office
 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mats Carlid
Sent: Wednesday, November 24, 2004 2:40 AM
To: [EMAIL PROTECTED]
Subject: Re: [U2] Verify Universe - was [U2] UniObjects and Triggers


Sara Burns wrote:

>We have solved our problem with the UniObjects by re-installing 
>UniVerse after we found the checksum for uvapi_slave was different on 
>our two machines.
> 
>Is there any way to verify that the UniVerse binaries are correct?
> 
>This would have saved us many hours of testing, red herrings and 
>general desperation.  There was nothing visible at the file level which 
>indicated the file had been updated, only the checksum.  We have been 
>having disk errors on the machine and have now found that these 
>binaries are on a mirrored set showing errors.  That was a surprise as 
>we thought they were on a different disk array.
> 
>AIX 5.2 ML_01, UniVerse 10.0.11
> 
>Sara Burns
>
>  
>
Yes,

when you install uv   a checksum check is performed and the checksums
 are kept in .../uv/checksums
 You'll find the code to rerun the check in one of the installation 
scripts (uv.install?).

If they could be corrput reload them from the installation medium.

HTH
-- mats
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Verify Universe - was [U2] UniObjects and Triggers

2004-11-24 Thread Mats Carlid
Sara Burns wrote:
We have solved our problem with the UniObjects by re-installing UniVerse
after we found the checksum for uvapi_slave was different on our two
machines.
Is there any way to verify that the UniVerse binaries are correct?  

This would have saved us many hours of testing, red herrings and general
desperation.  There was nothing visible at the file level which indicated
the file had been updated, only the checksum.  We have been having disk
errors on the machine and have now found that these binaries are on a
mirrored set showing errors.  That was a surprise as we thought they were on
a different disk array.
AIX 5.2 ML_01, UniVerse 10.0.11
Sara Burns 

 

Yes,
when you install uv   a checksum check is performed and the checksums
are kept in .../uv/checksums
You'll find the code to rerun the check in one of the installation 
scripts (uv.install?).

If they could be corrput reload them from the installation medium.
HTH
-- mats
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Verify Universe - was [U2] UniObjects and Triggers

2004-11-23 Thread John Hester
Sara Burns wrote:
We have solved our problem with the UniObjects by re-installing UniVerse
after we found the checksum for uvapi_slave was different on our two
machines.
 
Is there any way to verify that the UniVerse binaries are correct?  
If you have a known good install to compare to, you could use the unix 
diff command.  The easiest way to get access to the good binaries would 
probably be to NFS mount the `cat /.uvhome`/bin directory from the good 
install to the questionable machine.  It wouldn't be too hard to write a 
script to automate the process.  I think something like this would work:

cd `cat /.uvhome`/bin
for FILENAME in `ls` do
 diff ./$FILENAME /path/to/nfs/mount/$FILENAME >> /tmp/uv_verify.log
done
-John
--
John Hester
System & Network Administrator
Momentum Group Inc.
(949) 833-8886 x623
http://memosamples.com
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/