Solaris OS용 Sun Cluster 데이터 서비스 개발 안내서

xfnts_stop 메소드 코드 목록

RGM은 HA-XFS 자원이 포함된 자원 그룹이 클러스터 노드에서 오프라인 상태이거나 자원이 비활성화될 때 해당 노드에서 Stop 메소드를 실행합니다. 이 메소드는 해당 노드에서 xfs 데몬을 중지합니다.


예 C–7 xfnts_stop.c

/*
 * Copyright (c) 1998-2005 by Sun Microsystems, Inc.
 * All rights reserved.
 *
 * xfnts_svc_stop.c - Stop method for HA-XFS
 */

#pragma ident “@(#)xfnts_svc_stop.c 1.10 01/01/18 SMI”

#include <rgm/libdsdev.h>
#include “xfnts.h”

/*
 * Stops the HA-XFS process using PMF
 */

int
main(int argc, char *argv[])
{

   scds_handle_t   scds_handle;
   int      rc;

   /* Process the arguments passed by RGM and initialize syslog */
   if (scds_initialize(&scds_handle, argc, argv) != SCHA_ERR_NOERR)
{
      scds_syslog(LOG_ERR, “Failed to initialize the handle.”);
      return (1);
   }

   rc = svc_stop(scds_handle);

   /* Free up all the memory allocated by scds_initialize */
   scds_close(&scds_handle);

   /* Return the result of svc_stop method */
   return (rc);
}