BootIP vs Persistent IP in HACMP


 
Thread Tools Search this Thread
Operating Systems AIX BootIP vs Persistent IP in HACMP
# 1  
Old 07-11-2016
BootIP vs Persistent IP in HACMP

I have done other clusters (HP MC/Service Guard and oracle Clusters, and RHEL Cluster services), and have good idea about hacmp (a little older knowledge).

However the term "Boot IP" for some reason is messing with my head. Have not done HACMP since the 4.1.2.X days.

Is the Bootip the same concept as the Cluster Interconnect/Private IP /HeartBeat IP in Service Guard and Oracle/Sun Clusters?

I understand the Persistent IP and the service IP just fine.
# 2  
Old 07-12-2016
Quote:
Originally Posted by mrmurdock
However the term "Boot IP" for some reason is messing with my head. Have not done HACMP since the 4.1.2.X days.

I understand the Persistent IP and the service IP just fine.
"Persistent IP" and "boot IP" means (nowadays) the same. Back then, in the times before HACMP 5.x, there were three types of addresses one of which was called "boot", but nowadays - that is, from HACMP 5.x onwards - there are only (in HACMP-speak) "service" and "non-service" (persistent) addresses.

Every adapter has a "non-service" IP which it comes up with at boot time. It will always retain this IP address as long as it is up.

For every "service" (or "resource group", which effectively means the same) there might be a "service IP", under which the service (i.e. a database) can be reached over the network.

Each resource group consists of:

1) one or more VGs, which are brought online (and their filesystems mounted) when the RG starts

2) an "application controller": this is a collection of a "start" script and a "stop" script, one of which is executed at RG going online, one when the RG goes offline

3) an optional "application monitor": a script which is executed regularly and may check (and maybe take some corrective action) for the running application

4) an optional service IP, which is added as an IP-alias when the RG has started.

For HACMP the process of starting a RG is:
- varyon VGs, ount FSes
- execute start-script of App-controller
- add service IP as IP-Alias to certain interface
- as long as RG is online: execute app-monitor regularly (if there is one)

The takeover of the RG means:
- on Node1 remove IP-Alias
- on Node1 execute stop-script of App-controller
- on Node1 umount FSes and varyoff VGs
- on Node2 execute start-procedure as described above

It is possible to configure service-IPs to be activated before (instead of the default after) mounting FSes and define certain dependency rules for RGs (like "active this RG only after the other RG is activated", etc.).

I hope this helps.

bakunin
This User Gave Thanks to bakunin For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Linux

Add persistent route in cent os 6.5

Hi , I have cent os 6.5 and am trying to make few routes permanent for bond: i have added two routes using below two commands : /sbin/route add -net 10.0.0.0 netmask 255.0.0.0 gw 10.59.160.128 /sbin/route add -net 0.0.0.0 netmask 0.0.0.0 gw 49.44.52.90 post which route command output is... (5 Replies)
Discussion started by: omkar.jadhav
5 Replies

2. Programming

Python Request Persistent

I noticed that when attempting to download videos from the url, I receive a 403 forbidden when I get through to a certain point in my downloads. I can download a third of the videos but will error: Retrieving file 'blah-video.f4v'... Traceback (most recent call last): ... (0 Replies)
Discussion started by: metallica1973
0 Replies

3. War Stories

Why am I persistent to be WRONG!

:wall::wall::wall::wall: I am sharing some techno-geeky-work related issue, which can best be dissected here only. I am expecting more of a discussion,as serious as when two guys sharing experience over smoke and beer. The thing is, till now i have been only a student, so never cared about how... (10 Replies)
Discussion started by: animesharma
10 Replies

4. Solaris

Persistent boot disks issue

Hi all, please i need your help urgently I am faced to a serious boot disks issue on an Sun Fire E2900. The system run with two disque in zpool . The operating system is Solaris 10 (ZFS) The first time the issue occured, i got the error below on the two disks: Apr 7 08:04:33... (0 Replies)
Discussion started by: saki_jumeau
0 Replies

5. Solaris

aggr not persistent after a reboot

All, I hope someone can help me on my problem with an aggregate, as I am a Solaris noob. I tried doing this according to the official documentation from Oracle (unfortunately, as a new user to the forum, I may not post URLs...) and also googled a lot around, but have not found any solution yet.... (15 Replies)
Discussion started by: Captainquark
15 Replies

6. AIX

PowerHA, same subnet for persistent and service ip

I am new in AIX and please forgive my poor english. I know that AIX allow same subnet IPs for different interfaces, which result in multipath routing / route striping. My question is, is there any best practice for the persistent and service IP with same subnet to stay on same interface, or... (5 Replies)
Discussion started by: skeyeung
5 Replies

7. AIX

Unable to add persistent IP

i am trying to make HACMP but when i add a persistent ip, error shows unable to determine address for 'UPIDGIS1_pers' pls help me out AIX - 5.3 HACMP -5.4 thanks (2 Replies)
Discussion started by: reply.ravi
2 Replies

8. AIX

HACMP does not start db2 after failover (db2nodes not getting modified by hacmp)

hi, when I do a failover, hacmp always starts db2 but recently it fails to start db2..noticed the issue is db2nodes.cfg is not modified by hacmp and is still showing primary node..manually changed the node name to secondary after which db2 started immediately..unable to figure out why hacmp is... (4 Replies)
Discussion started by: gkr747
4 Replies

9. AIX

HACMP Persistent IP blacklisted

Hi, I want to use the service IP incase for any network activity rather than the persistent IP as the Persistent IP is blacklisted in our network. Is there any way to make the service ip as LPARs default IP to be used as the lpars source IP incase it pings anything or acceses any external... (6 Replies)
Discussion started by: aixromeo
6 Replies

10. Shell Programming and Scripting

Persistent variable

I found a way to make a numeric variable persistent for a script : #!/bin/bash function Persist() { # 1:Expression like VARIABLE=Value (numeric) local V=${1%=*} eval "$1" sed -i "s/^$V=*/$1/" $(which $(basename $0)) || return 1 }And how to use itAA=12 read -p "Enter a... (2 Replies)
Discussion started by: frans
2 Replies
Login or Register to Ask a Question