Keepalived and Source Hash Scheduling


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Keepalived and Source Hash Scheduling
# 8  
Old 05-29-2015
Quote:
Originally Posted by biks93
I want my load balancer to be in "rr" mode for almost all the time exept for one specific client (with a unique IP address)
Just let the client connect to the servers "real" IP address instead of the "virtial" IP address of the loadbalancer. You don't need to change the loadbalancer configuration not at all, then.

I hope this helps.

bakunin
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need to print hash of hash in table format

Hi, I have a hash of hash where it has name, activities and count i have data like this - $result->{$name}->{$activities} = $value; content of that are - name - robert tom cat peter activities - running, eating, sleeping , drinking, work i need to print output as below ... (3 Replies)
Discussion started by: asak
3 Replies

2. Linux

The problem in the Haproxy+Keepalived script

Hi Install HAPROXY+KEEPALIVED in the hosts ip 192.168.10.241 & 192.168.20.241 And was configured as follows: KeepAlived vrrp_script chk_haproxy { script "pidof haporxy" # check the haproxy process interval 2 # every 2 seconds weight 2 # add 2 points if OK } vrrp_instance VI_1 {... (1 Reply)
Discussion started by: milad
1 Replies

3. Shell Programming and Scripting

Dynamically parse BibTeX and create hash of hash

Hello gurus, Iam trying to parse following BibTex file (bibliography.bib): @book{Lee2000a, abstract = {Abstract goes here}, author = {Lee, Wenke and Stolfo, Salvatore J}, title = {{Data mining approaches for intrusion detection}}, year = {2000} } @article{Forrest1996, abstract =... (0 Replies)
Discussion started by: wakatana
0 Replies

4. Shell Programming and Scripting

Compare values of hashes of hash for n number of hash in perl without sorting.

Hi, I have an hashes of hash, where hash is dynamic, it can be n number of hash. i need to compare data_count values of all . my %result ( $abc => { 'data_count' => '10', 'ID' => 'ABC122', } $def => { 'data_count' => '20', 'ID' => 'defASe', ... (1 Reply)
Discussion started by: asak
1 Replies

5. Shell Programming and Scripting

perl hash - using a range as a hash key.

Hi, In Perl, is it possible to use a range of numbers with '..' as a key in a hash? Something in like: %hash = ( '768..1536' => '1G', '1537..2560' => '2G' ); That is, the range operation is evaluated, and all members of the range are... (3 Replies)
Discussion started by: dsw
3 Replies

6. Shell Programming and Scripting

Perl Hash:Can not keep hash data in the same order that it was inserted

Can Someone explain me why even using Tie::IxHash I can not get the output data in the same order that it was inserted? See code below. #!/usr/bin/perl use warnings; use Tie::IxHash; use strict; tie (my %programs, "Tie::IxHash"); while (my $line = <DATA>) { chomp $line; my(... (1 Reply)
Discussion started by: jgfcoimbra
1 Replies

7. Shell Programming and Scripting

Print Entire hash list (hash of hashes)

I have a script with dynamic hash of hashes , and I want to print the entire hash (with all other hashes). Itried to do it recursively by checking if the current key is a hash and if yes call the current function again with refference to the sub hash. Most of the printing seems to be OK but in... (1 Reply)
Discussion started by: Alalush
1 Replies

8. Shell Programming and Scripting

hash ,source and type commands

hi everyone i need some help about using "source, hash ,type" commands if you have some examples pls wrote it thanks for your help (1 Reply)
Discussion started by: oetzi
1 Replies
Login or Register to Ask a Question
Hash::Util::FieldHash::Compat(3pm)			User Contributed Perl Documentation			Hash::Util::FieldHash::Compat(3pm)

NAME
Hash::Util::FieldHash::Compat - Use Hash::Util::FieldHash or ties, depending on availability. SYNOPSIS
use Hash::Util::FieldHash::Compat; # pretend you are using L<Hash::Util::FieldHash> # under older perls it'll be Tie::RefHash::Weak instead (slower, but same behavior) DESCRIPTION
Under older perls this module provides a drop in compatible api to Hash::Util::FieldHash using perltie. When Hash::Util::FieldHash is available it will use that instead. This way code requiring field hashes can benefit from fast, robust field hashes on Perl 5.10 and newer, but still run on older perls that don't ship with that module. See Hash::Util::FieldHash for all the details of the API. SEE ALSO
Hash::Util::FieldHash, Tie::RefHash, Tie::RefHash::Weak. VERSION CONTROL
This module is maintained using Darcs. You can get the latest version from <http://nothingmuch.woobling.org/code>, and use "darcs send" to commit changes. AUTHOR
Yuval Kogman <nothingmuch@woobling.org> COPYRIGHT
Copyright (c) 2008 Yuval Kogman. All rights reserved This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.4 2008-05-16 Hash::Util::FieldHash::Compat(3pm)