linux server load balancing commands &status commands
2 posts
• Page 1 of 1
linux server load balancing commands &status commands
both port checking and load balancing comands.....do help?
- tony003
- Posts: 0
- Joined: Tue Sep 30, 2014 7:21 pm
Re: linux server load balancing commands &status commands
Hello Tony,
You can check your open server ports using the below command
# nc -z [hostname] [port-range]
i.e,
# nc -z localhost 1-4000
For load balancing you can probably use this command to check the number of incoming requests to your server
#netstat -ntlp | grep :80 | wc -l
This article will help you more in load balancing commands.
http://archive09.linux.com/articles/46735
Hope that helped.
You can check your open server ports using the below command
# nc -z [hostname] [port-range]
i.e,
# nc -z localhost 1-4000
For load balancing you can probably use this command to check the number of incoming requests to your server
#netstat -ntlp | grep :80 | wc -l
This article will help you more in load balancing commands.
http://archive09.linux.com/articles/46735
Hope that helped.
- Vipin
- Posts: 0
- Joined: Tue Nov 25, 2014 11:50 am
- Location: Trivandrum
2 posts
• Page 1 of 1