Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
35 views

Mysql multi request at same time

I have a Ubuntu-server. It is running Mysql & Apache. I have several request at same time. I I saw processes, by top command. I have 10 Apache process and always one process for Mysql. I ...
0
votes
1answer
108 views

Google analytics traffice source is untraceable IP?

Can someone explain how this is possible. I am getting traffic to my website coming from this IP: 10.201.3.31:15871 I can't find where or what that is. It seems to be an unallocated address block. ...
0
votes
3answers
117 views

configure server to handle a lot of requests

I have a website and we bought some advertisement on neobux.com. We bought 1000 views hoping to get more users on the website. We have a VPS with 1gb ram and 1gb burstable running apache. When we ...
-1
votes
1answer
115 views

Possible to upload weblogs to Google Analytics?

It's always bothered me that Google Analytics (and similar embedded web traffic monitoring services) can only see a reflection of the traffic going to my server and can only see page visits. If I want ...
2
votes
1answer
106 views

Setup Amazon EC2 instance to forward Appengine urlfetch requests

I currently have an appengine app and need to make calls to an API that requires IP whitelisting. I can't whitelist the entire appengine IP blocks (as outlined here) because the range is too big. So ...
0
votes
0answers
18 views

What's the best way to analyze pages traffic on a WSS 3.0 site?

I have a WSS 3.0 website with differents lists and some wikis. I would like to be able to know how much the website is used in terms of document downloads and visits of the wiki site. What's the ...
0
votes
2answers
106 views

how can I measure traffic for Httpd/Ftp and SSH

Is there any way to measure httpd/ftpd and sshd trafic per user basis.
0
votes
3answers
124 views

Server Configuration / Important Parameter for 500Req/Second

I am configuring a server to be used as nginx server for a very heavy traffic website. It is expected to receive traffic from a large number of IP addresses simultaneously. It is expected to get ...
5
votes
6answers
287 views

Real-time website traffic monitoring for operations teams

Working on medium sized websites we've always built our own real-time traffic graphing solutions and displayed those on a big screen mission control style so that if traffic starts to climb, load ...
0
votes
3answers
165 views

Should I use IIS for High Traffic WebApp

My company is planning one new big web app. We are expecting around 250K hits per day in the first month. I'm used to work with large traffic sites, but using Apache and Lighttpd, etc. But for this ...
2
votes
1answer
128 views

Using awstats with a round-robin DNS configuration

I have a website with multiple web servers whose access is controlled via a round-robin DNS. We currently use Google Analytics for site traffic monitoring but were looking to move to awstats due to ...
3
votes
5answers
514 views

Windows Server traffic monitor that show traffic for each connected IP

I would like to see traffic in bytes of individual users (IP's) in real time. Logging would be good too. Additionally I would like to see which process (CGI.exe, php script etc) they are connected to ...
0
votes
2answers
57 views

Is there a way of seeing how many open sessions there are in IIS6?

I have a feeling we are being hit by very high traffic, how do I prove or disprove my theory?
1
vote
2answers
554 views

How can I block all traffic except web traffic?

I have wrote my rules like this: iptables -P INPUT DROP iptables -P OUTPUT DROP iptables -P FORWARD DROP iptables -A OUTPUT -i eth0 -p tcp --dport 80 -j ACCEPT What do I do next?
4
votes
6answers
188 views

Monitoring and detecting abusive traffic on webserver

I curious how others monitor and detect crawler robots & IPs that are using up a lot of bandwidth on a webserver? This isn't for preventing DDoS attacks as much as bots run amok. What tools or ...