I am trying to setup a drbd/nfs server in pacemaker on RHEL5 and am experiencing some wierd issues the the server is started using pacemaker.  Pacemaker starts the daemons just fine, but when it tries to shutdown it cannot.  It calls /etc/init.d/nfs to shutdown the daemons, but they do not respond.  When I start the daemons mysql using the same script I am able to kill them using the init.d script.  The logs show success trying to shutdown the daemons even though they do not.  I was wondering if anyone else has seen this issue?<br>
<br><br>Judd<br><br>Configuration:<br><br>node filer1<br>node filer2<br>node mysql1<br>node mysql2<br>primitive drbd_mysql ocf:linbit:drbd \<br>        params drbd_resource="mysql" \<br>        op monitor interval="15s"<br>
primitive fs1_drbd ocf:linbit:drbd \<br>        params drbd_resource="fs1"<br>primitive fs1_lvm ocf:heartbeat:LVM \<br>        params volgrpname="data_vg"<br>primitive fs1_nfs ocf:heartbeat:nfsserver \<br>
        params nfs_init_script="/etc/init.d/nfs" nfs_notify_cmd="/sbin/rpc.statd" nfs_shared_infodir="/var/lib/nfs/" nfs_ip="fs1"<br>primitive fs1_nfs_recovery_fs ocf:heartbeat:Filesystem \<br>
        params device="/dev/data_vg/v4recovery" directory="/var/lib/nfs/v4recovery/" fstype="ext3"<br>primitive mysql_daemon ocf:heartbeat:mysql \<br>        params binary="/usr/bin/mysqld_safe" pid="/var/run/mysqld/mysqld.pid"<br>
primitive mysql_fs ocf:heartbeat:Filesystem \<br>        params device="/dev/drbd/by-res/mysql" directory="/var/lib/mysql" fstype="ext3"<br>primitive mysql_ip ocf:heartbeat:IPaddr2 \<br>        params ip="mysql" nic="eth0:0"<br>
group fs1 fs1_lvm fs1_nfs_recovery_fs fs1_nfs \<br>        params target_role="stopped"<br>group mysql mysql_fs mysql_ip mysql_daemon<br>ms ms_drbd_mysql drbd_mysql \<br>        meta master-max="1" master-node-max="1" clone-max="2" clone-node-max="1" notify="true" globally-unique="false"<br>
ms ms_fs1_drbd fs1_drbd \<br>        meta master-max="1" master-node-max="1" clone-max="2" clone-node-max="1" notify="true" globally-unique="false"<br>location drbd_mysql_on_mysql1 ms_drbd_mysql 100000: mysql1<br>
location drbd_mysql_on_mysql2 ms_drbd_mysql 100000: mysql2<br>location fs1_drbd_on_filer1 ms_fs1_drbd 100000: filer1<br>location fs1_drbd_on_filer2 ms_fs1_drbd 100000: filer2<br>location fs1_on_filer1 fs1 100000: filer1<br>
location fs1_on_filer2 fs1 100000: filer2<br>location mysql_on_mysql1 mysql 100000: mysql1<br>location mysql_on_mysql2 mysql 100000: mysql2<br>colocation fs1_on_fs1_drbd inf: fs1 ms_fs1_drbd:Master<br>colocation mysql_on_drbd_mysql inf: mysql ms_drbd_mysql:Master<br>
order fs1_after_fs1_drbd inf: ms_fs1_drbd:promote fs1:start<br>order mysql_after_drbd_mysql inf: ms_drbd_mysql:promote mysql:start<br>property $id="cib-bootstrap-options" \<br>        dc-version="1.0.5-462f1569a43740667daf7b0f6b521742e9eb8fa7" \<br>
        cluster-infrastructure="openais" \<br>        expected-quorum-votes="4" \<br>        symmetric-cluster="false" \<br>        stonith-enabled="false" \<br>        last-lrm-refresh="1258664854"<br>