What is the meaning of the ipvs command output? I have to enter the following information. activeconn and inactconn are both high. What's the problem? I use Linux as3.0, heartbeat + ldirector + LVS. The total number of concurrent jobs in the cluster is always low!
IP Virtual Server version 1.0.8 (size = 65536)
Prot localaddress: Port sched1_flags
-> Remoteaddress: port forward weight activeconn inactconn
TCP 192.168.2.10: http rr persistent 3600
-> Web 3: HTTP Route 1 450 3269
-> Web4: HTTP Route 1 462 3652
-> Web2: HTTP Route 1 866 4159
-> Web 1: HTTP Route 1 910 3835
Activeconn indicates the number of connections in the TCP established State, and inactconn indicates the number of connections in the TCP non-established State, such as syn_received, time_wait, close_wait, and so on.
Is the number of activeconn equal to the number of connections corresponding to the established status on the real server?
Yes, you can say that.