On Thu, 2008-01-31 at 23:10 -0600, Terry wrote:

>            <service autostart="1" domain="failover00" exclusive="0"
> name="database" recovery="relocate">
>                         <postgres-8 ref="dssystem2">
>                                 <fs ref="db00"/>
>                                 <ip ref="192.168.100.207"/>
>                         </postgres-8>
>                 </service>

That's not going to work; the dependencies are backwards (assuming
postgresql is trying to use the fs and ip).  Try:

    <service autostart="1" domain="failover00" exclusive="0"
             name="database" recovery="relocate">
        <fs ref="db00"/>
        <ip ref="192.168.100.207"/>
        <postgres-8 ref="dssystem2"/>
    </service>

-- Lon


--
Linux-cluster mailing list
Linux-cluster@redhat.com
https://www.redhat.com/mailman/listinfo/linux-cluster

Reply via email to