Sponsored Content
Top Forums Shell Programming and Scripting The other node name of a SUN cluster Post 302092331 by heartwork on Monday 9th of October 2006 02:39:36 AM
Old 10-09-2006
Just copy & paste...

1st:

Code:
root@carp # X=voms21                                  
root@carp # numofchar=${#X}                           
root@carp # numofcharminus1=`expr $numofchar "-" 1`   
root@carp # Y=`echo "$X" | cut -c1-${numofcharminus1}`
root@carp # Z=`echo "$X" | cut -c${numofchar}`        
root@carp # T=`expr 3 "-" $Z`                         
root@carp # echo $Y$T                                 
voms22

2nd:

Code:
root@carp # cat modif
numofchar=${#X}
numofcharminus1=`expr $numofchar "-" 1`
Y=`echo "$X" | cut -c1-${numofcharminus1}`
Z=`echo "$X" | cut -c${numofchar}`
T=`expr 3 "-" $Z`
echo $Y$T

root@carp # X=voms21
root@carp # ./modif
cut: invalid range specifier
cut: no list specified
expr: syntax error

root@carp #

Quote:
Originally Posted by nathan
Can you post your script? Just cut-and-paste it. ( Be sure and use code tags. )
 

9 More Discussions You Might Find Interesting

1. HP-UX

Node can't join cluster

Need help guys! when running cmrunnode batch i'm getting this error cmrunnode : Waiting for cluster to... (1 Reply)
Discussion started by: Tris
1 Replies

2. HP-UX

MC/SG Fail to join cluster node

Hi, Please advise me whereas I have two node cluster server configured with MC/SG. Application and DB are running on Node 1, while Node 2 is standby. All the volume group devices are part of cluster environment. There is only one package running at node 1. Node 2 is having the problem to... (1 Reply)
Discussion started by: rauphelhunter
1 Replies

3. High Performance Computing

Setting up 2 node cluster using solaris 10

hi, i am trying to setup a 2 node cluster environment. following is what i have; 1. 2 x sun ultra60 - 450MHz procs, 1GB RAM, 9GB HDD, solaris 10 2. 2 x HBA cards 3. 2 x Connection leads to connect ultra60 with D1000 4. 1 x D1000 storage box. 5. 3 x 9GB HDD + 2 x 36GB HDD first of all,... (1 Reply)
Discussion started by: solman17
1 Replies

4. Solaris

Active Sun cluster node?

I now the logical name and Virtual IP of the cluster. How can I find the active sun cluster node without having root access? (3 Replies)
Discussion started by: sreeniatbp
3 Replies

5. Solaris

Single node Sun Cluster with zones

How can we add a shared zfs dataset between 2 zones on a same host. I have sun cluster 3.2 installed in a server which has 2 zones. I want to share a zfs data set between these 2 zones how can we do that ? (7 Replies)
Discussion started by: fugitive
7 Replies

6. Solaris

SVM metaset on 2 node Solaris cluster storage replicated to non-clustered Solaris node

Hi, Is it possible to have a Solaris cluster of 2 nodes at SITE-A using SVM and creating metaset using say 2 LUNs (on SAN). Then replicating these 2 LUNs to remote site SITE-B via storage based replication and then using these LUNs by importing them as a metaset on a server at SITE-B which is... (0 Replies)
Discussion started by: dn2011
0 Replies

7. Solaris

Sun Cluster 3.2 x86: Node is rebooting itself

Hey Admins, I am running sun cluster 3.2 x86 on Vmware. I m facing an issue from 2 days.. One main node is continuously rebooting..... not sure... whats woring... I just had change heartbeat timeout values on 1 this node... Now both node are just rebooting itself..seems panic.. Any... (1 Reply)
Discussion started by: snchaudhari2
1 Replies

8. 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

9. AIX

Cluster node not starting

Setting up HACMP 6.1 on a two node cluster. The other node works fine and can start properly on STABLE state (VGs varied, FS mounted, Service IP aliased). However, the other node is always stuck on ST_JOINING state. Its taking forever and you can't stop the cluster as well or recover from script... (2 Replies)
Discussion started by: depam
2 Replies
DBIx::Class::Carp(3)					User Contributed Perl Documentation				      DBIx::Class::Carp(3)

NAME
DBIx::Class::Carp - Provides advanced Carp::Clan-like warning functions for DBIx::Class internals DESCRIPTION
Documentation is lacking on purpose - this an experiment not yet fit for mass consumption. If you use this do not count on any kind of stability, in fact don't even count on this module's continuing existence (it has been noindexed for a reason). In addition to the classic interface: use DBIx::Class::Carp '^DBIx::Class' this module also supports a class-data based way to specify the exclusion regex. A message is only carped from a callsite that matches neither the closed over string, nor the value of "_skip_namespace_frames" as declared on any callframe already skipped due to the same mechanism. This is to ensure that intermediate callsites can declare their own additional skip-namespaces. CLASS ATTRIBUTES
_skip_namespace_frames A classdata attribute holding the stringified regex matching callsites that should be skipped by the carp methods below. An empty string "q{}" is treated like no setting/"undef" (the distinction is necessary due to semantics of the class data accessors provided by Class::Accessor::Grouped) EXPORTED FUNCTIONS
This module export the following 3 functions. Only warning related "carp*" is being handled here, for "croak"-ing you must use "throw_exception" in DBIx::Class::Schema or DBIx::Class::Exception. carp Carps message with the file/line of the first callsite not matching "_skip_namespace_frames" nor the closed-over arguments to "use DBIx::Class::Carp". carp_unique Like "carp" but warns once for every distinct callsite (subject to the same ruleset as "carp"). carp_once Like "carp" but warns only once for the life of the perl interpreter (regardless of callsite). perl v5.18.2 2013-12-16 DBIx::Class::Carp(3)
All times are GMT -4. The time now is 06:32 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy