Solaris Live Upgrade not working with EMC SAN

Hi, I am trying to setup a Solaris Live Upgrade environment of a SF6800 domain. The domain has local disks and is also connected to an EMC SAN. At present, lucreate is failing with the following message:

INFORMATION: Unable to determine size or capacity of slice </dev/emc/dsk/sf68avg/bc1d99>

bc1d99 is the file system on the EMC SAN.

lucreate worked fine of a SF6800 domain with internal disks only.

Has anyone had problems or success in creating a Solaris Live Upgrade environment in which your server was connected to an EMC SAN?

Thanks in advance,

Stewart

[736 byte] By [discostew] at [2007-11-25 22:36:53]
# 1
and the 'EMC SAN' is what exactly? what storage box etc etc
topbannana at 2007-7-5 14:04:01 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 2

Hi,

I have the same problem with an attached A5200 with mirrored disks (Solaris 9, Volume Manager). Whereas the "critical" partitions should be copied to a second system disk, the mirrored partitions should be shared.

Here is a script with lucreate.

#!/bin/sh

Logdir=/usr/local/LUscripts/logs

if [ ! -d ${Logdir} ]

then

echo ${Logdir} existiert nicht

exit

fi

/usr/sbin/lucreate \

-l ${Logdir}/$0.log \

-o ${Logdir}/$0.error \

-m /:/dev/dsk/c2t0d0s0:ufs \

-m /var:/dev/dsk/c2t0d0s3:ufs \

-m /opt:/dev/dsk/c2t0d0s4:ufs \

-m -:/dev/dsk/c2t0d0s1:swap \

-n disk0

And here is the output

<a href="mailto:root&#64;ahbgbld800x" target="_blank">root@ahbgbld800x</a>:/usr/local/LUscripts >./lucreate_disk0.sh

Discovering physical storage devices

Discovering logical storage devices

Cross referencing storage devices with boot environment configurations

Determining types of file systems supported

Validating file system requests

Preparing logical storage devices

Preparing physical storage devices

Configuring physical storage devices

Configuring logical storage devices

Analyzing system configuration.

INFORMATION: Unable to determine size or capacity of slice </dev/md/RAID-INT/dsk/d0>.

ERROR: An error occurred during creation of configuration file.

ERROR: Cannot create the internal configuration file for the current boot environment <disk3>.

Assertion failed: *ptrKey == (unsigned long long)_lu_malloc, file lu_mem.c, line 362

Abort - core dumped

kwiegel at 2007-7-5 14:04:01 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...