Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ocf_heartbeat_sfex(7) [suse man page]

OCF_HEARTBEAT_SFEX(7)						OCF resource agents					     OCF_HEARTBEAT_SFEX(7)

NAME
ocf_heartbeat_sfex - Manages exclusive acess to shared storage using Shared Disk File EXclusiveness (SF-EX) SYNOPSIS
sfex [start | stop | monitor | meta-data] DESCRIPTION
Resource script for SF-EX. It manages a shared storage medium exclusively . SUPPORTED PARAMETERS
device Block device path that stores exclusive control data. (required, string, no default) index Location in block device where exclusive control data is stored. 1 or more is specified. Default is 1. (optional, integer, default 1) collision_timeout Waiting time when a collision of lock acquisition is detected. Default is 1 second. (optional, integer, default 1) monitor_interval Monitor interval(sec). Default is 10 seconds (optional, integer, default 10) lock_timeout Valid term of lock(sec). Default is 20 seconds. (optional, integer, default 20) SUPPORTED ACTIONS
This resource agent supports the following actions (operations): start Starts the resource. Suggested minimum timeout: 600. stop Stops the resource. Suggested minimum timeout: 20s. monitor Performs a detailed status check. Suggested minimum timeout: 10. Suggested interval: 10. meta-data Retrieves resource agent metadata (internal use only). Suggested minimum timeout: 5. EXAMPLE
The following is an example configuration for a sfex resource using the crm(8) shell: primitive example_sfex ocf:heartbeat:sfex params device=string op monitor depth="0" timeout="10" interval="10" SEE ALSO
http://www.linux-ha.org/wiki/sfex_(resource_agent) AUTHOR
Linux-HA contributors (see the resource agent source for information about individual authors) resource-agents 1.0.3 07/05/2010 OCF_HEARTBEAT_SFEX(7)

Check Out this Related Man Page

OCF_HEARTBEAT_WAS6(7)						OCF resource agents					     OCF_HEARTBEAT_WAS6(7)

NAME
ocf_heartbeat_WAS6 - Manages a WebSphere Application Server 6 instance SYNOPSIS
WAS6 [start | stop | status | monitor | meta-data | validate-all] DESCRIPTION
Resource script for WAS6. It manages a Websphere Application Server (WAS6) as an HA resource. SUPPORTED PARAMETERS
profile The WAS profile name. (optional, string, default default) SUPPORTED ACTIONS
This resource agent supports the following actions (operations): start Starts the resource. Suggested minimum timeout: 300. stop Stops the resource. Suggested minimum timeout: 300. status Performs a status check. Suggested minimum timeout: 30. Suggested interval: 10. monitor Performs a detailed status check. Suggested minimum timeout: 30. Suggested interval: 10. validate-all Performs a validation of the resource configuration. Suggested minimum timeout: 5. meta-data Retrieves resource agent metadata (internal use only). Suggested minimum timeout: 5. methods Suggested minimum timeout: 5. EXAMPLE
The following is an example configuration for a WAS6 resource using the crm(8) shell: primitive p_WAS6 ocf:heartbeat:WAS6 op monitor depth="0" timeout="30" interval="10" SEE ALSO
http://www.linux-ha.org/wiki/WAS6_(resource_agent) AUTHOR
Linux-HA contributors (see the resource agent source for information about individual authors) resource-agents UNKNOWN 03/09/2014 OCF_HEARTBEAT_WAS6(7)
Man Page

2 More Discussions You Might Find Interesting

1. AIX

how do I increase the storage space I am new to AIX

Host Name - xxxxxxx IP Address - xxxxxxxxx Alert Msg - The percentage of available storage space (DMXMemory) is low (49.54374442289481 percent). Time received - 14:23 Time Logged - 14:55 Suggested Group - MR-UNIX (5 Replies)
Discussion started by: Nyiko
5 Replies

2. Shell Programming and Scripting

integer treated as text?

The following script should kill all the queries taking more than say 600 seconds. But it seems that it is killing queries taking more than 6 seconds. >> sh myscript.sh 600 #!/bin/bash #kill runaway processes SEC=$1 ifs='|' if ]; then echo "Usage: $0 seconds" exit 1 fi mysqladmin... (4 Replies)
Discussion started by: shantanuo
4 Replies