The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
57 views

can you give me feedback on an HA architecture using linux-ha and pacemaker?

I am trying to come up with an architecture for achieving HA on one of our services (in-house service, single tcp connection for all requests). Just started reading on linux-ha and pacemaker, and i'd ...
0
votes
1answer
2k views

crm command(cluster managment for pacemaker) not found in latest Centos 6

I have done such setup before, was no any issues. Now i can't do "crm configure" becuase no crm command availible in current package. Am I missing something? Maybe it replaced by other way/command? ...
0
votes
1answer
145 views

Linux-HA Pacemaker.. NFS Resource starting “unmanaged”

My cluster I've been working on just starting acting up out of no where... It looks like I'm having an issue with the exportfs resource. Any ideas on how to troubleshoot this? I can find nothing for ...
2
votes
1answer
193 views

Linux HA Heartbeat Virtual IP Switching with domain name linked to it

I have heartbeat set up on two servers like so: Master: 10.15.1.50 Backup: 10.15.1.51 (Virtual IP: 10.15.1.52) So, the master always has 10.15.1.52 as well, but if it goes down, the backup will ...
0
votes
1answer
155 views

could corosync can support unicast heartbeat mode?

could corosync can support unicast heartbeat mode? from another thread in serverfault, some guy raised below corosync conf: totem { version: 2 secauth: off interface { ...
1
vote
1answer
131 views

could heartbeat v3 monitor service/resource status without pacemaker?

I am trying to setup a HA system based on CentOS, I want to use heartbeat v3 for the "heartbeat" mechanism, resource start/stop, looks heartbeat can get it done. But about the resource status, ...
0
votes
0answers
243 views

How to check which node is the master with heartbeat?

I need to know which machine is the current active node in an active(1)-passive(n) cluster. Reading the docs I could come up with cl_status rscstatus <node name> which returns various values ...
1
vote
0answers
224 views

Heartbeat is not claiming the resources

I am trying to build a dynamic cluster of machines that have to communicate with the master node (for reporting, updates and various other tasks that are to be dealt with by the master node). For ...
0
votes
1answer
709 views

Make pacemaker retry failed resources

I would like to get pacemaker to retry starting my resource primitive Imq ocf:example:imq \ op monitor on-fail="restart" interval="10s" \ op start interval="0" timeout="60s" on-fail="restart" \ ...
-1
votes
1answer
93 views

Active node stops resources when pasive node is shutdown

2 nodes, active/pasive. 2 resources, a virtual ip, openLdap, and the nfs mount where openldap saves the data. When both nodes are up, things worked fine. You could move resources away and put the ...
2
votes
1answer
1k views

relation between heartbeat,openais,corosync

i am planning for high availability on lucid ubuntu, i started with drbd after a simple configuration on drbd I went to heartbeat and had a simple config on it too. on drbd official site a document ...
0
votes
3answers
78 views

change a file at a time located in different location

Iam very new to linux. suppose i have two file with same name fstab one file is located in /etc and the other is located in /root/ If i make a change in /etc/fstab file the changes has to reflect in ...
1
vote
2answers
2k views

Heartbeat on SLES 11

I am trying to setup Linux-HA (Heartbeat) on a new SLES 11 Server anyone know of a good step-by-step for this the site's docs leave a little to be desired... Thanks!
2
votes
2answers
953 views

Unexpected start of already-primary server processes when heartbeat on secondary is stopped

I've got an active-passive Heartbeat cluster with Apache, MySQL, ActiveMQ and DRBD. Today, I wanted to perform hardware-maintenance on the secondary node (node04), so I stopped the heartbeat service ...
16
votes
9answers
4k views

Architecture for highly available MySQL with automatic failover in physically diverse locations

I have been researching high availability (HA) solutions for MySQL between data centers. For servers located in the same physical environment, I have preferred dual master with heartbeat (floating ...
2
votes
1answer
4k views

Heartbeat vs UCarp

Can anyone explain what is the major difference between Heartbeat and UCarp for IP fail-over scenarios? They both seem to provide this functionality, perhaps UCarp simpler to set-up? Thanks.
4
votes
7answers
1k views

Mixing Multi-Master Replication (MMR) with Linux-HA

I'm interested in using MMR (http://mysql-mmm.org/) for high availability and replication purposes. The problem is, I'm also interested in using Linux-HA for other services, such as Apache. The two ...