Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
litespeed_wiki:license:all_about_licenses [2013/12/12 14:13]
Michael [How do I check concurrent connections for my server?]
litespeed_wiki:license:all_about_licenses [2013/12/12 14:23]
Michael [How do I check concurrent connections for my server?]
Line 20: Line 20:
 There is limit for max concurrent connections for different licenses. Free version is limited to 150, VPS license is 500, Enterprise edition is unlimited. There is limit for max concurrent connections for different licenses. Free version is limited to 150, VPS license is 500, Enterprise edition is unlimited.
 You can check the number of concurrent connections used from the real-time report in web admin console. Or use the command You can check the number of concurrent connections used from the real-time report in web admin console. Or use the command
-  netstat -an | grep 80 | grep ESTA | wc +  netstat -an | grep 80 | grep ESTA | wc -l 
-This command ​will output three numbers. The first number is the number of "established" ​connections. Only established connections from netstat output are considered to be concurrent.+This will give you the number of current ​established connections. Only established connections from netstat output are considered to be concurrent.