Sponsored Content
Operating Systems Linux Red Hat Linux PaceMaker Equivalent to a SharedAddress Resource Type Post 303041715 by mrmurdock on Monday 2nd of December 2019 11:31:22 AM
Old 12-02-2019
Linux PaceMaker Equivalent to a SharedAddress Resource Type

In HA platforms, there is the concept of a "Scalable Resource Type, which included the sharedaddress" that is used in commonly Web Servers resource groups. The sharedaddress resource type is provided so a developer can use this Resource type to build their own scalable resource group. I see PaceMaker provides a Apache Resource type, but I do not believe its generic to create your own group to use the sharedAddress ability with. Red Hat support seems to be confounded by the concept, it also could be I am not explaining it correctly. Most anyone who has any type of HA Application background should be able to understand the concept I am talking about.
Does PaceMaker provide a sharedAddress or similiar concept, resource type to roll your own Scalable Resource Group?

Last edited by rbatte1; 12-02-2019 at 12:37 PM.. Reason: Corrected spelling in title
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Equivalent Suse Linux command

hi, In solaris, psrinfo gives number of cpu in use/online and so on. What is the equivalent command for "psrinfo" in Suse Linux ? Thx (3 Replies)
Discussion started by: braindrain
3 Replies

2. Linux

Linux equivalent for daemon2

Hi all... In my Unix system a program exists called "daemon2" which is responsible to enqueue program executions. For example, if I want to make the system to enqueue lpr executions for certain users, I call daemon2 with lpr as the parameter. Is there an equivalent in Linux? Thanks Jaime (0 Replies)
Discussion started by: jstuardo
0 Replies

3. UNIX for Advanced & Expert Users

Equivalent for iostat -e in AIX HP-UX Linux

iostat -e gives the soft, hard and transport error information in Solaris. What is the equivalent command in the other flavors of Unix AIX HP Linux. Thanks Prasi (1 Reply)
Discussion started by: prasi_in
1 Replies

4. Linux

Mksysb Equivalent For Linux?

I have experience with making bootable images of AIX systems using mksysb and wondered if there was some type of equivalent software for Linux. Or perhaps some of the folks here have alternatives or unique ideas for how they are backing up their Linux systems enabling them to recover them as... (13 Replies)
Discussion started by: scotbuff
13 Replies

5. Red Hat

ICU resource bundling on Linux: error faced while using Key more than 15 chars

Hi, I am trying to use ICU resource bundle on Unix and created a resource bundle "root.res" from the following file. root { abcdefghijklmnop { "16 character key" } abcdefghijklmno { "15 character key" } abcdefghijklmn { "14 character key" } abcdefghijklm12 { "13 C... (0 Replies)
Discussion started by: prashant_jindal
0 Replies

6. Linux

Linux equivalent for...

I moved to a Linux system from Windows a few months ago. Most of the programs I had been using were already native to Linux (Firefox, the GIMP, Pari, etc.) and most others I found a close enough program (Crimson Editor -> gedit, Visual Studio -> KDevelop, Primo -> Morain's ECPP). Now I'm down... (1 Reply)
Discussion started by: CRGreathouse
1 Replies

7. Programming

WSAAsyncSelect equivalent for linux

Hello, I'm writing a multi-threaded socket server in C++ and I needed something like wsaasyncselect to handle messages like fd_accept, fd_read, fd_connect, fd_close. Thanks in advance. (2 Replies)
Discussion started by: lucastonon
2 Replies

8. Linux

/etc/netmasks equivalent in linux

Hi Guys, I am used to configuring DHCP on Solaris and foreach subnet added I place a corresponding entry in /etc/netmasks. I am now looking at configuring DHCP on linux, is there an equivalnet entry required somewhere or is this not needed in linux Thanks (3 Replies)
Discussion started by: eeisken
3 Replies

9. Red Hat

NFS_v4_fail_over_timeout equivalent in Linux

Hi, I need to mount a replicated nfs4 export on a number of AIX and Redhat hosts. To get the failover on the clients working smoothly, I need to change certain values on the AIX boxes like nfs_v4_fail_over_timeout, timeo and retrans values. Since I have no clue about Linux, I am not quite sure... (1 Reply)
Discussion started by: zxmaus
1 Replies

10. Shell Programming and Scripting

Need Linux equivalent for UNIX

I have a folder called "log" which has a few sub-folders say "fda" "fd7" "fdd" "fd6 .... " I wish to fire the below command inside each subfolder starting with the folder with the latest time stamp. grep "$greptime.*exit" Prod.$(hostname).log | grep $fdrdate_new If the seach did not yield... (3 Replies)
Discussion started by: mohtashims
3 Replies
XtSetSubvalues()														  XtSetSubvalues()

Name
  XtSetSubvalues - copy resource settings from an ArgList to a subpart resource structure.

Synopsis
  void XtSetSubvalues(base, resources, num_resources, args, num_args)
	 XtPointer base;
	 XtResourceList resources;
	 Cardinal num_resources;
	 ArgList args;
	 Cardinal num_args;

Inputs
  base	    Specifies the base address of the subpart data structure into which the resources should be written.

  resources Specifies the subpart resource list.

  num_resources
	    Specifies the number of resources in the resource list.

  args	    Specifies an argument list of name/value pairs that contain the resource settings to be copied into the subpart data structure.

  num_args  Specifies the number of arguments in the argument list.

Description
  XtSetSubvalues()  copies the values of named resources from args into the structure pointed to by base.  The resource list resources speci-
  fies the size of each resource in this structure, and its offset from base.  The name of each  resource  in  args  is  looked  up  in  this
  resource list, and the resource's specified size and offset are used to copy the resource value into the subpart structure.  If the name of
  a resource in args does not match any of the resources described by resources, then that resource  name/value  pair  in  args  is  silently
  ignored.

  See  XtGetApplicationResources()  for a description of the various fields of a XtResource structure and an example of initializing an XtRe-
  sourceList.

Usage
  If a widget has subpart resources, it can fetch initial values for those resources  from  the  resource  database  by  calling  XtGetSubre-
  sources()  from  its	initialize() method and passing the user's argument list to override values from the database.	In the resource file,
  the subpart will have a name, and the subpart resources will be specified under that name in the resource  hierarchy.   Most	widgets  will
  want	to  allow  the user to set the values of subpart resources from application code as well.  One way to do this is to call XtSetSubval-
  ues() from within the widget's set_values() method, passing the subpart resource list and the user's argument list.  (Prior to  Release  4,
  you  had  to	use  the  set_values_hook()  method  for  this	purpose.)  With this approach, subpart resources seem just like normal widget
  resources to the user; both types of resources can be set by calling XtSetValues().  Another approach is  to	provide  a  special  function
  (which  will use XtSetSubvalues()) to set values of your subpart.  This approach emphasizes that the subpart is a distinct component of the
  widget.

  Note that a more flexible alternative to subparts is to use non-widget objects which the user can create as children of your widget.	 This
  way the user has a handle on the "subparts" and can manipulate them directly.

  To get the values of named resources from a subpart, use XtGetSubvalues().

  To  set resource values in a subpart structure using a NULL-terminated variable-length argument list instead of an ArgList, use XtVaSetSub-
  values().

Structures
  XtResource is defined as follows:

     typedef struct _XtResource {
	String	  resource_name;  /* Resource name */
	String	  resource_class; /* Resource class */
	String	  resource_type;  /* Representation type desired */
	Cardinal  resource_size;  /* Size in bytes of representation */
	Cardinal  resource_offset;/* Offset from base to put resource value */
	String	  default_type;   /* Representation type of specified default */
	XtPointer default_addr;   /* Address of resource default value */
     } XtResource, *XtResourceList;

  See XtGetApplicationResources() for an explanation of the fields of this structure.

  Arg are defined as follows:

     typedef struct {
	 String name;
	 XtArgVal value;
     } Arg, *ArgList;

See Also
  XtGetApplicationResources(1), XtGetSubresources(1), XtGetSubvalues(1),
  set_values(4).

Xt - Resource Management													  XtSetSubvalues()
All times are GMT -4. The time now is 10:07 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy