Sponsored Content
Full Discussion: Production to DR switch
Special Forums IP Networking Production to DR switch Post 302767519 by mohtashims on Thursday 7th of February 2013 03:12:17 AM
Old 02-07-2013
Network Production to DR switch

Hi,

I have application server on IP 10.10.220.42 (Prod).

When the Production goes down I wish to switch over all my application server's configuration files onto IP 10.10.220.45 (DR).

The client is exposed to proxy apache http webserver running @ IP 10.10.220.30

Can you please suggest what configuration change needs to go in where inorder to achieve Prod -> DR switch ?
 

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

need help.. ! Production Env.

Hi ! I want to delete a softlink... with a name.. " -> ALCATEL " FYI:- lrwxrwxrwx 1 infomcm develop 32 Dec 3 2007 COX -> /wlsuite/om/cm/build/sandbox/COX lrwxrwxrwx 1 infomcm develop 33 Jul 21 05:52 WL10 -> /wlsuite/om-cm/build/sandbox/WL10 lrwxrwxrwx 1... (2 Replies)
Discussion started by: dashok.83
2 Replies

2. Shell Programming and Scripting

how to access console of a switch having rj45 on switch side to db 9 female on pc side console cable

hi, how to access console of a switch having rj45 on switch side to db 9 female on pc side console cable which needs to be connected to one console server having rj11 on its side and db 9 female on other end.i.e. on switch side,console cable has rj45 and db 9 pin female connector on other side of... (1 Reply)
Discussion started by: pankajd
1 Replies

3. UNIX for Dummies Questions & Answers

To know the server which the production is pointing to?

Hi, How to know which server(Application or webserver) the production link or url is pointing to? Is there any command to get the server IP address? Thanks in advance. (3 Replies)
Discussion started by: venkatesht
3 Replies

4. BSD

Copying OpenBSD Kernel from a non production to production machine

Hi All, There are few OpenBSD 4.8 servers without compiler installed at my working place. However, sometimes there are some patches released for patching the kernel. My question is: Can I setup a non production OpenBSD 4.8 server as a test machine with compiler installed and use it to... (1 Reply)
Discussion started by: lcxpics
1 Replies
IMAGELAYEREFFECT(3)							 1						       IMAGELAYEREFFECT(3)

imagelayereffect - Set the alpha blending flag to use the bundled libgd layering effects

SYNOPSIS
bool imagelayereffect (resource $image, int $effect) DESCRIPTION
Set the alpha blending flag to use the bundled libgd layering effects. PARAMETERS
o $ image -An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(3). o $effect - One of the following constants: o IMG_EFFECT_REPLACE - Use pixel replacement (equivalent of passing TRUE to imagealphablending(3)) o IMG_EFFECT_ALPHABLEND - Use normal pixel blending (equivalent of passing FALSE to imagealphablending(3)) o IMG_EFFECT_NORMAL - Same as IMG_EFFECT_ALPHABLEND. o IMG_EFFECT_OVERLAY - Overlay has the effect that black background pixels will remain black, white background pixels will remain white, but grey background pixels will take the colour of the foreground pixel. RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 imagelayereffect(3) example <?php // Setup an image $im = imagecreatetruecolor(100, 100); // Set a background imagefilledrectangle($im, 0, 0, 100, 100, imagecolorallocate($im, 220, 220, 220)); // Apply the overlay alpha blending flag imagelayereffect($im, IMG_EFFECT_OVERLAY); // Draw two grey ellipses imagefilledellipse($im, 50, 50, 40, 40, imagecolorallocate($im, 100, 255, 100)); imagefilledellipse($im, 50, 50, 50, 80, imagecolorallocate($im, 100, 100, 255)); imagefilledellipse($im, 50, 50, 80, 50, imagecolorallocate($im, 255, 100, 100)); // Output header('Content-type: image/png'); imagepng($im); imagedestroy($im); ?> The above example will output something similar to:[NOT DISPLAYABLE MEDIA]Output of example : imagelayereffect() NOTES
Note This function requires GD 2.0.1 or later (2.0.28 or later is recommended). PHP Documentation Group IMAGELAYEREFFECT(3)
All times are GMT -4. The time now is 04:27 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy