LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 09-15-2011, 07:46 AM   #1
hsnanua
Member
 
Registered: Aug 2011
Posts: 40

Rep: Reputation: Disabled
Rh clustering


Hello all,

I am trying to make a new cluster using two servers and just would like to make sure I m not missing any steps.


I got the servers,

Installed centos version 5
Yum the cluster package
Installed luci- set up luci and set up the cluster
Installed pirAnha and set it up too
That's for clustering

I then set up my iptables to act as a fw since I have 3 servers under me.

The question is: would this be enough to produce a running server?
Someone said I do not need to install keepalived with this configuration . True?
Do I need to get ipvsadm running too?

Help, I am hopelessly lost .

Thanks
 
Old 09-15-2011, 05:41 PM   #2
ccolumbu
Member
 
Registered: Oct 2009
Posts: 37

Rep: Reputation: 4
More info

I am not sure exactly what you are trying to do, you say you are making a cluster, but I think you are making a pair of load balancers to sit in front of a farm of server.

If you are trying to create a pair of firewall/load balancers I have done this multiple times with heartbeat, heartbeat-ldirector, and iptables.

Not that heartbeat-ldirector will use ipvsadm and will help you configure multiple internal or external IPs to run your cluster.

With a little more information I might be able to help you.
 
Old 09-15-2011, 06:16 PM   #3
hsnanua
Member
 
Registered: Aug 2011
Posts: 40

Original Poster
Rep: Reputation: Disabled
Hi,

Thats right. There is a pair of load balancers which i would like to have HA, and round robin LB. And they are in front of 4 servers (application servers).

The main question would be, are the above sufficient? Or do i need to install more?

Thank you
 
Old 09-16-2011, 12:40 AM   #4
hsnanua
Member
 
Registered: Aug 2011
Posts: 40

Original Poster
Rep: Reputation: Disabled
The reason is because there are some sources say, that i need to install LVS, nanny, pulse first.

Do i still need LVS, nanny, pulse even if i have conga and piranha?

If yes, where can i find them?

would yum do?

Thanks
 
Old 09-16-2011, 01:36 AM   #5
ccolumbu
Member
 
Registered: Oct 2009
Posts: 37

Rep: Reputation: 4
I install heartbeat and ldiretord, nothing else is needed.

I set them up like so:
External IPs (internet accessible):
load1 physical IP = XXX.XXX.XXX.XXX (This is a static IP from your ISP/colo assigned to load1 that never changes (this is how you ssh into load1))
load2 physical IP = XXX.XXX.XXX.XXX (Same as the load1 external ip)
virtual service IP = XXX.XXX.XXX.XXX (This is a 3rd ip that will be moved back and forth between load1 and load2 if anything goes wrong)

Internal IPs:
load1 physical IP = 172.16.16.11 (This is a static IP assigned to load1 that never changes (this is how you ssh into load1 fron inside the network)
load2 physical IP = 172.16.16.12 (Same as the load1 internal ip)
gateway IP = 172.16.16.1 (This is the IP that your farm has to use as its gateway so all their answers go back to the LBs) (it will shift between load1 and load2 at the same time as the external IP)

Ldirector:
Set this up in masq mode to pass all traffic through your LBs so that the traffic from the farms is always on a private network and the LBs are your firewall and the only servers that have internet IPs directly.

That is it. You have a farm. As to keeping the data on the farm's HDs in sync and how to deal with sessions, etc. that is a different problem.

BTW: I like to set up 3 networks using 4 switches:
2 external switches (red network) with bonded NICs in mode 6 from each LB to one of each of the switches, then these can be connected to your ISP/co-lo with HSRP or similar so if a switch dies the farm keeps going. (make sure the switches support spanning tree, I like the LINKSYS SRW224G4 if you don't need more than 10/100)

Then 2 gigabit switches for the yellow and green networks. For these I use a vlan so ports 1-12 are yellow and 13-24 are green, since you are connecting the 2 vlans together with 2 network cables to prevent a single point of failure, you can attach up to 10 bonded NIC servers and if either switch fails your network will keep running without missing a beat. I like the Netgear GS724T for these.

Now you have a very high availability network to go with your high availability cluster.

Note: here are the 3 networks ad what they are for.
Red: This is all interfaces between your gear and the internet (load balancers, KVM over IP devices, remote PDU devices etc)
Yellow: All network communication between your servers and the load balancers (this is where the LB's internal IP attaches)
Green: All traffic that can not access the internet (like the traffic between your farm and a DB server, nfs mount, NIS+ traffic, internal DNS, internal NTP, etc.) because this traffic can not be accessed from red or yellow (they are physically separate) it is more secure. You should never fully trust any traffic and should always secure all network interfaces, but this is much safer.
 
1 members found this post helpful.
Old 09-16-2011, 02:41 AM   #6
hsnanua
Member
 
Registered: Aug 2011
Posts: 40

Original Poster
Rep: Reputation: Disabled
Ah nice.

Can i do away with Piranha then?

Also, how do i set the option for type of load balancing (roud robin, etc)

Thanks

Last edited by hsnanua; 09-16-2011 at 03:07 AM.
 
Old 09-16-2011, 03:10 AM   #7
hsnanua
Member
 
Registered: Aug 2011
Posts: 40

Original Poster
Rep: Reputation: Disabled
OK, I ll stick with piranha because of GUI.

I am currently using a combination of Keepalived and LVS.

I just installed piranha (which does the lvs.cf). I installed the iptables too. And plan to install IPVS.

Question: Can i start/install all these, while still running on keepalived/LVS? or do i need to shutdown keepalived first before configuring the piranha cluster?

I am afraid of downtime.

Thanks.
 
Old 09-16-2011, 11:18 PM   #8
ccolumbu
Member
 
Registered: Oct 2009
Posts: 37

Rep: Reputation: 4
I don't know anything about Keepalived or piranha.
I guess we are at the limit of my assistance.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Clustering nitingawande21 Linux - Server 2 06-11-2007 02:41 AM
Clustering ZAMO Linux - Server 6 04-09-2007 10:38 AM
clustering alvin_fx Linux - Wireless Networking 2 08-12-2006 10:41 PM
clustering Ammad Linux - General 1 08-11-2005 08:05 AM
clustering rrecchia Linux - General 1 08-09-2005 01:29 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 07:38 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration