Sponsored Content
Full Discussion: Cluster communication issue
Operating Systems AIX Cluster communication issue Post 302954606 by agent.kgb on Wednesday 9th of September 2015 10:28:44 AM
Old 09-09-2015
Code:
NODE-A# clrsh NODE-B date
NODE-A# clrsh NODE-A date

NODE-B# clrsh NODE-B date
NODE-B# clrsh NODE-A date

?
 

10 More Discussions You Might Find Interesting

1. High Performance Computing

Building a Solaris Cluster Express cluster in a VirtualBox on OpenSolaris

Provides a description of how to set up a Solaris Cluster Express cluster in a VirtualBox on OpenSolaris. More... (0 Replies)
Discussion started by: Linux Bot
0 Replies

2. Solaris

SC3.2 issue - cluster transport configuration not right - resulting fail

I am trying to set up a two host cluster. trouble is with the cluster transport configuration. i'm using e1000g2 and g3 for the cluster transport. global0 and global1 are my two nodes, and I am running the scinstall from global1. i think i should be expecting, is this: The following... (19 Replies)
Discussion started by: frustin
19 Replies

3. Solaris

Issue while installing: Solaris 10 SPARC Recommended Patch Cluster (2009.10.23)

Hello, As explained, I've encountered an issue while installing Solaris 10 SPARC Recommended Patch Cluster (2009.10.23). Actually, patch no 120011-14 stops with the following error: ERROR: attribute verification of </var/run/.patchSafeMode/root/usr/bin/passwd> failed file type <f>... (6 Replies)
Discussion started by: a.mauger
6 Replies

4. Solaris

Sun cluster and Veritas cluster question.

Yesterday my customer told me to expect a vcs upgrade to happen in the future. He also plans to stop using HDS and move to EMC. Am thinking how to migrate to sun cluster setup instead. My plan as follows leave the existing vcs intact as a fallback plan. Then install and build suncluster on... (5 Replies)
Discussion started by: sparcguy
5 Replies

5. Solaris

Sun Cluster configuration issue

I am using VMware Workstation-7 on Windows-XP host . I am trying to configure Solaris 10-X86 guest os based 2 nodes Sun Cluster . I have added one extra Virtual Lan adapter on my VMware with another subnet (that I would like to put for SUN Cluster private communication). I have... (0 Replies)
Discussion started by: sanjee
0 Replies

6. Solaris

Sun Cluster switching issue

I have installed sun cluster 3.2 on two sprac servers. Configured a failover resource group. Added a LogicalHostname resource to it. LogicalHostname is also added to /etc/hosts with ip address. I am able to access cluster by share ip used for logical hostname but when i try to switch the resource... (0 Replies)
Discussion started by: ahmadnauman
0 Replies

7. Solaris

Sun cluster 4.0 - zone cluster failover doubt

Hello experts - I am planning to install a Sun cluster 4.0 zone cluster fail-over. few basic doubts. (1) Where should i install the cluster s/w binaries ?. ( global zone or the container zone where i am planning to install the zone fail-over) (2) Or should i perform the installation on... (0 Replies)
Discussion started by: NVA
0 Replies

8. Solaris

Sun Cluster 3.2 Issue

Hello everyone, I have two Solaris 10 servers that are on cluster. The cluster is a Sun Cluster 3.2 I have a script cronned that stop/start a ressource in a resource group everyday. Today I have checked the status of the ressources and I found that my ressource group have a "Error--stop... (1 Reply)
Discussion started by: adilyos
1 Replies

9. Red Hat

Linux Cluster failover issue

Hi Guys, I am not much aware of clusters but i have few questions can someone provide the overview as it would be very helpful for me. How can i perform cluster failover test to see all the services are failing back to other node ? If it is using veritas cluster then what kind of... (2 Replies)
Discussion started by: munna529
2 Replies

10. Solaris

Solaris cluster critical issue

Hi all, Few hours ago I did some changes in our Solaris cluster servers. Below are changes I did : 1. Installed latest Solaris 10 patchset from oracle. 2. Enabled BSM log module. Entered into single user mode and rebooted. After reboot changed to multi-user mode and rebooted again. Now... (7 Replies)
Discussion started by: sembii
7 Replies
RDF::Redland::Node(3pm) 				User Contributed Perl Documentation				   RDF::Redland::Node(3pm)

NAME
RDF::Redland::Node - Redland RDF Node (RDF Resource, Property, Literal) Class SYNOPSIS
use RDF::Redland; my $node1=new RDF::Redland::Node("Hello, World!"); my $node2=new RDF::Redland::Node($uri); # $uri is an RDF::Redland::URI my $node3=$node2->clone; my $node4=new RDF::Redland::URINode("http://example.com/"); my $node5=new RDF::Redland::LiteralNode("Hello, World!"); my $node6=new RDF::Redland::XMLLiteral("<tag>content</tag>"); my $node7=new RDF::Redland::BlankNode("genid1"); # alternate more verbose ways: my $node4=RDF::Redland::Node->new_from_uri("http://example.com/"); my $node5=RDF::Redland::Node->new_literal("Hello, World!"); my $node6=RDF::Redland::Node->new_xml_literal("<tag>content</tag>"); my $node7=RDF::Redland::Node->new_from_blank_identifier("genid1"); ... print $node4->uri->as_string," "; # Using RDF::Redland::URI::as_string print $node5->literal_value_as_latin1," "; DESCRIPTION
This class represents RDF URIs, literals and blank nodes in the RDF graph. CONSTRUCTORS
new [STRING | URI | NODE] Create a new URI node, literal node or copy an existing node. If a literal STRING is given, make a plain literal node. If a the argument is of type URI (perl URI or RDF::Redland::URI), make a resource node. Otherwise if the argument is an RDF::Redland::Node NODE, copy it. new_from_uri URI Create a new URI node. URI can be either a RDF::Redland::URI object, a perl URI class or a literal string. An alternative is: new RDF::Redland::URINode("http://example.org/"); new_literal STRING [DATATYPE [XML_LANGUAGE]] Create a new literal node for a literal value STRING. Optional datatype URI DATATYPE (RDF::Redland::URI, perl URI or string) and language (xml:lang attribute) XML_LANGUAGE may also be given. An alternative is: new RDF::Redland::LiteralNode("Hello, World!"); new RDF::Redland::LiteralNode("Bonjour monde!", undef, "fr"); new_xml_literal STRING Create a new XML datatyped literal node for the XML in STRING. An alternative is: new RDF::Redland::XMLLiteral("<tag>content</tag>"); new_from_blank_identifier IDENTIFIER Create a new blank node with blank node identifier IDENTIFIER. An alternative is: new RDF::Redland::BlankNode("id"); clone Copy a RDF::Redland::Node. METHODS
uri Get the current URI of the node as an RDF::Redland::URI object. blank_identifier Get the current blank identifier of the node type Get the node type. It is recommended to use the is_resource, is_literal or is_blank methods in preference to this (both simpler and quicker). The current list of types that are supported are: $RDF::Redland::Node::Type_Resource $RDF::Redland::Node::Type_Literal $RDF::Redland::Node::Type_Blank Example: if ($node->type == $RDF::Redland::Node::Type_Resource) { print "Node is a resource with URI ", $node->uri->as_string, " "; } else { ... } is_resource Return true if node is a resource (with a URI) is_literal Return true if node is a literal is_blank Return true if node is a blank nodeID literal_value Get the node literal value string as UTF-8 (when the node is of type $RDF::Redland::Node::Type_Literal) literal_value_as_latin1 Get the node literal value string converted from UTF-8 to ISO Latin-1 (when the node is of type $RDF::Redland::Node::Type_Literal) literal_value_language Get the node literal XML language (when the node is of type $RDF::Redland::Node::Type_Literal) or undef if not present. literal_value_is_wf_xml Return non 0 if the literal string is well formed XML (when the node is of type $RDF::Redland::Node::Type_Literal). literal_datatype Return the RDF::Redland::URI of the literal datatype or undef if it is not a datatype. as_string Return the RDF::Redland::Node formatted as a string (UTF-8 encoded). equals NODE Return non zero if this node is equal to NODE OLDER METHODS
new_from_literal STRING XML_LANGUAGE IS_WF Create a new RDF::Redland::Node object for a literal value STRING with XML language (xml:lang attribute) XML_LANGUAGE and if content is well formed XML, when IS_WF is non 0. XML_LANGUAGE is optional can can be set to undef. This method remains but using new_literal is prefered. Instead, for plain literals use: $node=new RDF::Redland::Node("blah") new_from_typed_literal STRING [DATATYPE [XML_LANGUAGE]] Renamed to new_literal with same arguments. new_from_uri_string URI_STRING Create a new RDF::Redland::Node object for a resource with URI URI_STRING. It is equivalent to use the shorter: $a=new RDF::Redland::Node->new_from_uri($uri_string) new_from_node NODE Create a new RDF::Redland::Node object from existing RDF::Redland::Node NODE (copy constructor). It is equivalent to use: $new_node=$old_node->clone SEE ALSO
RDF::Redland::Statement AUTHOR
Dave Beckett - http://www.dajobe.org/ perl v5.14.2 2011-05-09 RDF::Redland::Node(3pm)
All times are GMT -4. The time now is 03:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy