Sponsored Content
Top Forums UNIX for Advanced & Expert Users Raid A1000 with E450 and E250. Post 25053 by shibz on Wednesday 24th of July 2002 07:19:39 AM
Old 07-24-2002
Raid A1000 with E450 and E250.

Hi,

I'm facing problem in connecting a Raid A1000 to E250 and E450. ( Both machines with Solaris 2.6 OS and patched, with different
scsi-initiator-ids - 7 & 3 ).

BTW, I'm not using this setup to access raid data from both machines simultaneously. There is Veritas Cluster Server monitoring these devices and if any one fails, the VCS will mount the raid device in the standby machine.

If either of E250 or E450 is down, the other machine works well with the Raid Box. When the second machine boots up, it gives scsi errors and even if it boots, it hangs in 'format' command. Even the rm6 configuration GUI hangs.

The E250 identifies the raid device as C1t5 and E450 identifies as C2t5 (because c0 is used for internal disks and c1 is used for tape and Cdrom drive). Is this causing the problem ??

Is there any way to make E450 to identify the raid device as C1t5 ?

( The raid device ( single controller, raid manger 6.22 ) is connected via PCI slot )

Thanks in Advance,
 

9 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

Starting sun raid manager for A1000

Can anyone tell me the syntax for starting Raid manager on a A1000? (2 Replies)
Discussion started by: MBGPS
2 Replies

2. Filesystems, Disks and Memory

Moving Sun A1000 between E450's

Does anyone know what steps I have to follow to move an A1000 between two E450's. Im running solaris 2.6 (1 Reply)
Discussion started by: MBGPS
1 Replies

3. Solaris

Changing IPs on E450

Hi, I'm working with an E450 server and it has one network card configured with 2 local and internet IP addresses. Presently, the local IP is set as the primary address while teh Internet IP is set as the secondary address. I wish to change this and make the local IP secondary and the... (2 Replies)
Discussion started by: Ronny
2 Replies

4. UNIX for Dummies Questions & Answers

Ultra60 and A1000....raid manager needed just to see it?

Hi guys, I was asked to setup an Ultra60 (Sol 8) with an StorEdge A1000. Does anyone know if a probe-scsi-all is suppose to detect it? Right now it doesn't, so maybe I answered my own question :rolleyes: We have an the same setup running already, but I wasn't around when that was setup. ... (3 Replies)
Discussion started by: Yinzer955i
3 Replies

5. Solaris

E450 CPU temperature 80 degree F

Hi all, We are getting CPU warning temeratures sometimes and our server is shutdown at 80 degree F. We notice our server room temperature at 18 degree celcius . Our we have already cleaned dust from grills near CPU Fan . CPU fans are working (moving) . It is our experience that CPU... (5 Replies)
Discussion started by: Hitesh Shah
5 Replies

6. Solaris

Configure second NIC on Sun E450

I wanted to configure a second NIC card on a different IP on my Sun E450 server. Currently, I have hme0. when I ran the command : ifconfig hme1 <ip address> netmask <subnet mask> broadcast + up I got the following error message: ifconfig: SIOCGIFFLAGS: hme1: no such interface Any idea... (3 Replies)
Discussion started by: Remi
3 Replies

7. Solaris

Qlogic HBA card in E450 with errors

I have installed a qlogic HBA card in an E450 Solaris 9 with all the SUNW packages and the latest EPROM version. Configuration reboot was done. An orange light flashes to the right of where the card plugs into the fiber cable after booting, and the following error apprears at the start of the boot... (9 Replies)
Discussion started by: floydm
9 Replies

8. AIX

SCSI PCI - X RAID Controller card RAID 5 AIX Disks disappeared

Hello, I have a scsi pci x raid controller card on which I had created a disk array of 3 disks when I type lspv ; I used to see 3 physical disks ( two local disks and one raid 5 disk ) suddenly the raid 5 disk array disappeared ; so the hardware engineer thought the problem was with SCSI... (0 Replies)
Discussion started by: filosophizer
0 Replies

9. Red Hat

RAID Configuration for IBM Serveraid-7k SCSI RAID Controller

Hello, I want to delete a RAID configuration an old server has. Since i haven't the chance to work with the specific raid controller in the past can you please help me how to perform the configuraiton? I downloaded IBM ServeRAID Support CD but i wasn't able to configure the video card so i... (0 Replies)
Discussion started by: @dagio
0 Replies
scsi_status(9S) 					    Data Structures for Drivers 					   scsi_status(9S)

NAME
scsi_status - SCSI status structure SYNOPSIS
#include <sys/scsi/scsi.h> INTERFACE LEVEL
Solaris DDI specific (Solaris DDI) DESCRIPTION
The SCSI-2standard defines a status byte that is normally sent by the target to the initiator during the status phase at the completion of each command. STRUCTURE MEMBERS
uchar sts_scsi2 :1; /* SCSI-2 modifier bit */ uchar sts_is :1; /* intermediate status sent */ uchar sts_busy :1; /* device busy or reserved */ uchar sts_cm :1; /* condition met */ ucha sts_chk :1; /* check condition */ sts_chk indicates that a contingent allegiance condition has occurred. sts_cm is returned whenever the requested operation is satisfied sts_busy indicates that the target is busy. This status is returned whenever a target is unable to accept a command from an otherwise acceptable initiator (that is, no reservation conflicts). The recommended initiator recovery action is to issue the command again later. sts_is is returned for every successfully completed command in a series of linked commands (except the last command), unless the command is terminated with a check condition status, reservation conflict, or command terminated status. Note that host bus adapter drivers may not support linked commands (see scsi_ifsetcap(9F)). If sts_is and sts_busy are both set, then a reservation conflict has occurred. sts_scsi2 is the SCSI-2 modifier bit. If sts_scsi2 and sts_chk are both set, this indicates a command terminated status. If sts_scsi2 and sts_busy are both set, this indicates that the command queue in the target is full. For accessing the status as a byte, the following values are appropriate: STATUS_GOOD This status indicates that the target has successfully completed the command. STATUS_CHECK This status indicates that a contingent allegiance condition has occurred. STATUS_MET This status is returned when the requested operations are satisfied. STATUS_BUSY This status indicates that the target is busy. STATUS_INTERMEDIATE This status is returned for every successfully completed command in a series of linked commands. STATUS_SCSI2 This is the SCSI-2 modifier bit. STATUS_INTERMEDIATE_MET This status is a combination of STATUS_MET and STATUS_INTERMEDIATE. STATUS_RESERVATION_CONFLICT This status is a combination of STATUS_INTERMEDIATE and STATUS_BUSY, and it is returned whenever an initiator attempts to access a log- ical unit or an extent within a logical unit is reserved. STATUS_TERMINATED This status is a combination of STATUS_SCSI2 and STATUS_CHECK, and it is returned whenever the target terminates the current I/O process after receiving a terminate I/O process message. STATUS_QFULL This status is a combination of STATUS_SCSI2 and STATUS_BUSY, and it is returned when the command queue in the target is full. SEE ALSO
scsi_ifgetcap(9F), scsi_init_pkt(9F), scsi_extended_sense(9S), scsi_pkt(9S) Writing Device Drivers SunOS 5.11 30 Aug 1995 scsi_status(9S)
All times are GMT -4. The time now is 06:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy