hey,<br>
<br>
multipath v0.4.5<br>
RHEL ES4 U2<br>
2.6.9-22<br>
<br>
we have dm-mulitpath setup and everything works fine. noticing tho,
that upon bootup, devices aren't created. (/dev/mapper doesnt have the
alises). we would have to run 'multipath' then 'mount -a' to mount up
the devices.<br>
<br>
i've been looking on line to see how to have the system take care of
this during boot up so that once it's finished booting up, it'll scan
so that those mounts will be there automatically.<br>
<br>
there were mentions that it's taken care of in /etc/rc.sysinit, and i
see entries in there for multipath, so im not sure why its not working.<br>
<br>
any ideas? lemme know if you need more info.<br>
<br>
from rc.sysinit:<br>
<br>
# LVM2 initialization<br>
if [ -x /sbin/lvm.static -o -x /sbin/multipath -o -x /sbin/dmraid ]; then<br>
    if ! LC_ALL=C fgrep -q "device-mapper" /proc/devices 2>/dev/null ; then<br>
        modprobe dm-mod >/dev/null 2>&1<br>
    fi<br>
    echo "mkdmnod" | /sbin/nash --quiet >/dev/null 2>&1<br>
    [ -n "$SELINUX" ] && restorecon /dev/mapper/control >/dev/null 2>&1<br>
fi<br>
<br>
if [ -c /dev/mapper/control ]; then<br>
    if [ -f /etc/multipath.conf -a -x /sbin/multipath ]; then<br>
        modprobe dm-multipath >/dev/null 2>&1<br>
        /sbin/multipath -v 0<br>
    fi<br>
<br>
    if [ -x /sbin/dmraid ]; then<br>
        modprobe dm-mirror > /dev/null 2>&1<br>
        /sbin/dmraid -i -a y<br>
    fi<br>
    <br>
    if [ -x /sbin/lvm.static ]; then<br>
        if /sbin/lvm.static vgscan
--mknodes --ignorelockingfailure > /dev/null 2>&1 ; then<br>
           
action $"Setting up Logical Volume Management:" /sbin/lvm.static
vgchange -a y --ignorelock<br>
ingfailure<br>
        fi<br>
    fi<br>
fi<br>
<br>
<br>
# chkconfig --list multipathd<br>
multipathd      0:off  
1:off   2:on    3:on   
4:on    5:on    6:off<br>
<br>
<br>
thanks.<br>
<br>
andy<br>
<br>