Different connection status between 2 servers


 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Different connection status between 2 servers
# 1  
Old 06-29-2018
Different connection status between 2 servers

Hello All,

Actually, We have a problem in our server (RHEL 7.1), 1st server is used for payment apps like switch card payment (passthru only), and 2nd server is used for Database transaction.
When high transaction there is different connection between Apps Server and DB server, Apps Server sends connection to DB Server, but sometimes that's connection not ESTABLISHED like low traffic (I checked thru netstat in 2 servers). I have changed value Local_port range, and fin_timeout but it wasn't solve this problem, and I think my current kernel needs to update kernel to latest or stable version to solve this.
current kernel : 3.10.0-229.e17.x86_64

Please give me suggest about our this connection problem.

Thank you
Regards
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Exit Status 255, Connection closed in SFTP

I'm trying to connect from Server A to Server B to transfer files from A to B. I'm using NUID A1 in Server A and NUID A2 in Server B. I have done the following the steps to setup password-less login. 1. Add the public key of A1 in A to the Authorized keys of A2 in B. 2. Add the public key of... (4 Replies)
Discussion started by: sanchid312
4 Replies

2. Shell Programming and Scripting

How to check the status of sftp connection is successful or not in Linux?

Hi All, We are working on linux with putty terminal for file transferring using SFTP server... here we want to know /We have Urgent Requirement If SFTP connection is successfull then we should get .txt log file in target locaton as "Success/Failure" Please provide batch script for above... (7 Replies)
Discussion started by: sravanreddy
7 Replies

3. AIX

How to check the ethernet status for vlan and lhea adapter in client servers?

Hi Techies, I have a doubt. ent0 Available Logical Host Ethernet Port (lp-hea) ent1 Available Logical Host Ethernet Port (lp-hea) ent2 Available Logical Host Ethernet Port (lp-hea) ent3 Available Logical Host Ethernet Port (lp-hea) ent4 Available... (4 Replies)
Discussion started by: jayadeava
4 Replies

4. Shell Programming and Scripting

Checking running process status using "grep" on multiple servers in load sharing system.

Suppose i have 3 different servers say x,y and z. Im running some process say ABC and 40 instances for the same is being created. In load sharing suppose on server x, 20 instances are running server y, 10 instances are running server z, 10 instances are running. While checking the... (1 Reply)
Discussion started by: ankitknit
1 Replies

5. Solaris

secure connection between two servers ?

hello all, i have a question if i have two servers each one run an application i want to make a tunnel channel between the two servers the two application each one has a specific port . for example server A has port 2001 and server B has port 2002 server A talk to server A using any... (1 Reply)
Discussion started by: maxim42
1 Replies

6. Shell Programming and Scripting

Success/failure status of telnet connection

Hi, I am running a shell script which will spawn the telnet and login. But sometimes, the telnet session itself is not getting spawned. My requirement is, if the telnet session is not spawned, the user must be notified that it failed. Is there any command to capture the status of telnet... (2 Replies)
Discussion started by: merin
2 Replies

7. Shell Programming and Scripting

ksh connection to other servers

Hello, I am looking for a way for a server to launch a connection command to one of the other servers where the connection command has already embedded in it a server name, user name and a password. (2 Replies)
Discussion started by: LiorAmitai
2 Replies

8. Red Hat

How to kill a TCP connection which has status TIME_WAIT & no PID

Hi, I want to kill TCP connections which have status as TIME_WAIT & no PID (as per the output of the "netstat - p" command). Is there any command/utility available to kill connections to a specific port or IP address. The problem is that these connections don't have process ID (see... (4 Replies)
Discussion started by: Davinder31may
4 Replies

9. Shell Programming and Scripting

Status of remote servers

hi, Say me the command to check the status of server. whether its up or down (11 Replies)
Discussion started by: satheeshkr_cse
11 Replies

10. Shell Programming and Scripting

How to Create a shell script to test the telnet connection status

Hi friends, I'm newbie to shell script. I wanted to create a shell script which able to write a result for all the telnet connection status. For example, from this machine I want to test the telnet connection (total 100+ servers) with this machine. Any idea how to write this shell script?... (16 Replies)
Discussion started by: yhcheong
16 Replies
Login or Register to Ask a Question
Vend::Payment::PayflowPro(3pm)				User Contributed Perl Documentation			    Vend::Payment::PayflowPro(3pm)

NAME
Vend::Payment::PayflowPro - Interchange support for PayPal Payflow Pro HTTPS POST SYNOPSIS
&charge=payflowpro or [charge mode=payflowpro param1=value1 param2=value2] PREREQUISITES
The following Perl modules: LWP Crypt::SSLeay HTTP::Request HTTP::Headers OpenSSL PayPal's Payflow Pro HTTPS POST does NOT require the proprietary binary-only shared library that was used for the Verisign Payflow Pro service. DESCRIPTION
The Vend::Payment::PayflowPro module implements the payflowpro() payment routine for use with Interchange. It is compatible on a call level with the other Interchange payment modules -- in theory (and even usually in practice) you could switch from a different payment module to PayflowPro with a few configuration file changes. To enable this module, place this directive in interchange.cfg: Require module Vend::Payment::PayflowPro This must be in interchange.cfg or a file included from it. NOTE: Make sure CreditCardAuto is off (default in Interchange demos). The mode can be named anything, but the "gateway" parameter must be set to "payflowpro". To make it the default payment gateway for all credit card transactions in a specific catalog, you can set in catalog.cfg: Variable MV_PAYMENT_MODE payflowpro It uses several of the standard settings from Interchange payment. Any time we speak of a setting, it is obtained either first from the tag/call options, then from an Interchange order Route named for the mode, then finally a default global payment variable. For example, the "id" parameter would be specified by: [charge mode=payflowpro id=YourPayflowProID] or Route payflowpro id YourPayflowProID or with only Payflow Pro as a payment provider Variable MV_PAYMENT_ID YourPayflowProID The active settings are: id Your account ID, supplied by PayPal when you sign up. Global parameter is MV_PAYMENT_ID. secret Your account password, selected by you or provided by PayPal when you sign up. Global parameter is MV_PAYMENT_SECRET. partner Your account partner, selected by you or provided by PayPal when you sign up. Global parameter is MV_PAYMENT_PARTNER. vendor Your account vendor, selected by you or provided by PayPal when you sign up. Global parameter is MV_PAYMENT_VENDOR. transaction The type of transaction to be run. Valid values are: Interchange Payflow Pro ---------------- ----------------- sale S auth A credit C void V settle D (from previous A trans) Default is "auth". The following should rarely be used, as the supplied defaults are usually correct. remap This remaps the form variable names to the ones needed by PayPal. See the "Payment Settings" heading in the Interchange documentation for use. host The payment gateway host to use, to override the default. check_sub Name of a Sub or GlobalSub to be called after the result hash has been received from PayPal. A reference to the modifiable result hash is passed into the subroutine, and it should return true (in the Perl truth sense) if its checks were successful, or false if not. The transaction type is passed in as a second arg, if needed. This can come in handy since, strangely, PayPal has no option to decline a charge when AVS or CSC data come back negative. If you want to fail based on a bad AVS check, make sure you're only doing an auth -- not a sale, or your customers would get charged on orders that fail the AVS check and never get logged in your system! Add the parameters like this: Route payflowpro check_sub avs_check This is a matching sample subroutine you could put in interchange.cfg: GlobalSub <<EOR sub avs_check { my ($result) = @_; my ($addr, $zip) = @{$result}{qw( AVSADDR AVSZIP )}; return 1 if $addr eq 'Y' or $zip eq 'Y'; return 1 if $addr eq 'X' and $zip eq 'X'; return 1 if $addr !~ /S/ and $zip !~ /S/; $result->{RESULT} = 112; $result->{RESPMSG} = "The billing address you entered does not match the cardholder's billing address"; return 0; } EOR That would work equally well as a Sub in catalog.cfg. It will succeed if either the address or zip is 'Y', or if both are unknown. If it fails, it sets the result code and error message in the result hash using PayPal's own (otherwise unused) 112 result code, meaning "Failed AVS check". Of course you can use this sub to do any other post-processing you want as well. Troubleshooting Try the instructions above, then enable test mode. A test order should complete. Then move to live mode and try a sale with the card number "4111 1111 1111 1111" and a valid future expiration date. The sale should be denied, and the reason should be in [data session payment_error]. If it doesn't work: o Make sure you "Require"d the module in interchange.cfg: Require module Vend::Payment::PayflowPro o Check the error logs, both catalog and global. o Make sure you set your account ID and secret properly. o Try an order, then put this code in a page: <pre> [calcn] my $string = $Tag->uneval( { ref => $Session->{payment_result} }); $string =~ s/{/{ /; $string =~ s/,/, /g; return $string; [/calcn] </pre> That should show what happened. o If all else fails, consultants are available to help with integration for a fee. You can find consultants by asking on the "interchange-biz@icdevgroup.org" mailing list. NOTE
There is actually nothing in the package Vend::Payment::PayflowPro. It changes packages to Vend::Payment and places things there. AUTHORS
Tom Tucker <tom@ttucker.com> Mark Johnson <mark@endpoint.com> Jordan Adler David Christensen <david@endpoint.com> Cameron Prince <cameronbprince@yahoo.com> Mike Heins <mike@perusion.com> Jon Jensen <jon@endpoint.com> perl v5.14.2 2011-03-09 Vend::Payment::PayflowPro(3pm)