ML570 Panic


 
Thread Tools Search this Thread
Operating Systems SCO ML570 Panic
# 1  
Old 10-03-2006
Error ML570 Panic

Brief scenario of problem
working on contract for customer with supposedly identical setups in US and Europe

3 HP ML570 servers running SCO 5.07 networked together
servers 1 & 2 run the user applications , server 3 acts as backup / tape transport system between tape libraries

US side all runnning fine and stable

Europe side, servers 1 & 2 panic at irregular interval for no apparent reason, kernel mode trap E (suggesting ram / bad scsi cabling / termination)

anyone got any ideas / suggestions as have looked into this in great detail and running out of ideas

Hardware company that set up the servers and OS insist both US and Europe are identical, and are no help whatsoever Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Panic on SCO6

Hi all, I am running SCO6 in a VMWare environment. For the past two Sunday's during the system's automatic reboot I have received a Panic and the system has locked up. I have had to power off the VM and back on. I have never run into this sort of thing. Can someone help direct me to where... (1 Reply)
Discussion started by: Carlitos71
1 Replies

2. Solaris

Panic error

Hi All, I am getting the below error after login to box. SunOS Release 5.10 Version Generic_147440-02 64-bit Copyright (c) 1983, 2011, Oracle and/or its affiliates. All rights reserved. os-io Cross trap sync timeout: at cpu_sync.xword: 0x1010panic: failed to sto p cpu8 panic: failed to... (1 Reply)
Discussion started by: chetansingh23
1 Replies

3. Solaris

cpu panic

Hi all, solaris 10 system crashed, /var/adm/messages file: panic/thread=3003ccaa060: unix: mutex_exit: not owner, lp=60057340d28 owner=deadbeefdeadbee8 thread=3003ccaa06 0 unix: genunix: 000002a10c4b1a00 sockfs:accept+1a8 (0, 3, 83, 5f03, 8c, 5c00) genunix: %l0-3:... (1 Reply)
Discussion started by: Mehmet_Karaca
1 Replies

4. Solaris

CPU Panic.

Hi Guru's, My Sun Fire v490 PRODUCTION server(Sol 5.9) has rebooted twice - on Apr'30 & May'08 2009. And i found the following Error messages in /var/adm/messages file: Apr 30 11:36:42 mumux201 unix: Apr 30 11:36:42 mumux201 ^Mpanic/thread=2a1000c5d20: Apr 30 11:36:42 mumux201 unix: ... (4 Replies)
Discussion started by: Hari_Ganesh
4 Replies

5. Solaris

What is system panic?

Hello experts.. What is system panic? If a system is in that state.. what will happen? Why is it goes to panic condition? Just give me information about Panic condition.. How can i resolve this issue..? If you know any links(URL) or Books...? replay me back.... Thanks in... (5 Replies)
Discussion started by: younus_syed
5 Replies

6. HP-UX

Reboot After Panic

Hi all, Does anybody know what kinds of events can prompt the following? I found our test db box had rebooted itself. I'd like to know how I can go about finding our why. Thanks folks... (1 Reply)
Discussion started by: Kozmo
1 Replies

7. Solaris

Savemail panic - Need help

Hi All, I've been troubleshooting this sendmail panic I'm getting on my dmesg. The errors are: Feb 16 09:44:17 fakeserver_name sendmail: l1G1hGuD000884: Losing ./qfl1G1hGuD000884: savemail panic Feb 16 09:44:17 fakeserver_name sendmail: l1G1hGuD000884: SYSERR(root): savemail: cannot save... (2 Replies)
Discussion started by: grumash
2 Replies

8. Solaris

panic message

When ever i change my hard disk position from primary master to secondary slave, the solaris os gives a panic messge. how could i solve it. (2 Replies)
Discussion started by: ajay234
2 Replies

9. SCO

Panic :

Hi Friends , i am getting the following error when iam booting a sco unix system. ------------------ H init PANIC : srmountfun --Error 22 mounting rootdev hd(1/42) cannot dump 40863 pages to dempdev hd(1/41) : space for only 0 pages. Dump not completed. Safe to power off.... (1 Reply)
Discussion started by: sveera
1 Replies

10. UNIX for Dummies Questions & Answers

Panic

Hi All, When I came officce this morning I saw this error messages on the screen ----- PANIC:srmountfun - Error 6 mounting rootdev hd (1/42) Cannot dump 32639 pages to dumpdev hd (1/41) : space for only 0 pages Dump not completed -------- and machine was reboot mode. Why this problem... (3 Replies)
Discussion started by: alisev
3 Replies
Login or Register to Ask a Question
pwd(3tcl)						       Tcl Built-In Commands							 pwd(3tcl)

__________________________________________________________________________________________________________________________________________________

NAME
pwd - Return the absolute path of the current working directory SYNOPSIS
pwd _________________________________________________________________ DESCRIPTION
Returns the absolute path name of the current working directory. EXAMPLE
Sometimes it is useful to change to a known directory when running some external command using exec, but it is important to keep the appli- cation usually running in the directory that it was started in (unless the user specifies otherwise) since that minimizes user confusion. The way to do this is to save the current directory while the external command is being run: set tarFile [file normalize somefile.tar] set savedDir [pwd] cd /tmp exec tar -xf $tarFile cd $savedDir SEE ALSO
file(3tcl), cd(3tcl), glob(3tcl), filename(3tcl) KEYWORDS
working directory Tcl pwd(3tcl)