LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 02-12-2010, 12:49 AM   #1
Skillz
Member
 
Registered: Sep 2007
Posts: 252

Rep: Reputation: 32
Looking for a command...


I can not remember what it is, or how to use it. I remember using a command a while back on some suspicious processes a few years ago to track down the origin of them.

Here lately on my box, I've been getting a lot of hits on apache, but of processes that look like this

Code:
17461	(httpd)	/usr/local/apache/bin/httpd	/	/usr/local/apache/bin/httpd -k start -DSSL
Not too far out of the ordinary, but it's getting lots of them (50+) at once. Not sure what is causing it, but I'd like to track down the process.

When this happens, the server load usually goes up in the 50.0+ range.
 
Old 02-12-2010, 01:06 AM   #2
Skillz
Member
 
Registered: Sep 2007
Posts: 252

Original Poster
Rep: Reputation: 32
The command I was looking for is lsof.
 
Old 02-12-2010, 01:14 AM   #3
Skillz
Member
 
Registered: Sep 2007
Posts: 252

Original Poster
Rep: Reputation: 32
Well I'm not finding what I want to find, that of which I'm not sure what I want to find but it's not helping me solve my problem. So lets start with the basics.

What causes a system's load to raise? CPU usage? RAM usage? Anything else? CPU and RAM are easily measured using TOP, but during this process neither one of those are "through the roof" and in most cases are well below 50% on the CPU and hardly any RAM is being used.
 
Old 02-12-2010, 02:11 AM   #4
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
Quote:
What causes a system's load to raise? CPU usage? RAM usage? Anything else? CPU and RAM are easily measured using TOP, but during this process neither one of those are "through the roof" and in most cases are well below 50% on the CPU and hardly any RAM is being used.
You can start here.

http://en.wikipedia.org/wiki/Load_%28computing%29

lsof just shows you what processes are accessing a given file on your fs. This can be useful for many purposes but it has nothing to do with the system load.

Having a heavy system load is not necessarily a bad thing, it depends on how do you work, the kind of software you use and your hardware.

Note that apache can use threads, note as well that your web page probably has some php code on it, which probably adds some more processes for the php interpreter, probably mysql and who knows what else. Web servers nowadays can create a very significant load since they spawn lots of related processes for one or another task.
 
Old 02-12-2010, 12:25 PM   #5
Skillz
Member
 
Registered: Sep 2007
Posts: 252

Original Poster
Rep: Reputation: 32
Then how would you suggest I track down the reason why my server load sometimes gets really high?
 
Old 02-12-2010, 04:21 PM   #6
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
High load means usually that tasks are getting stuck, due to a bottleneck of some kind, or due to a program that forks or do more threading than it should. So, it's either that your software is behaving in a buggy way, OR you miscalculated the hardware power that you need to run your work load. There could be a misconfiguration problem as well.

When you have really high loads you should see quite a lot of processes stuck. I'd try turning off all the services, including your web server, mysql, and anything that's not mandatory (very few services are really mandatory). Once you have done that, open top, htop or a similar tool, and work as usual, be vigilant and see if something strange happens. After that, go adding services. I suggested apache as a possible offender because it likes to spawn lots of threads for any random purpose, and bad programming practices and buggy web pages can render your server useless if they produce a lot of threading. An exploitable bug in apache could have a similar effect as well. I assume your machine is rootkit-free and only you have login access to it, else that's the first you should check.
 
Old 02-12-2010, 08:40 PM   #7
Skillz
Member
 
Registered: Sep 2007
Posts: 252

Original Poster
Rep: Reputation: 32
I'd like to believe that my server hasn't been rootkitted, as I am the only one with root level access to it.

As for shutting down non required services such as the ones you mentioned, lets say I do end up releasing the load instantly after I shut down say apache, so now I know that apache is the culprit. What can I do to find out what is causing apache to run the server into over time?
 
Old 02-12-2010, 08:44 PM   #8
jmoschetti45
Member
 
Registered: Oct 2004
Location: Michigan
Distribution: Debian Squeeze (2.6.32-5)
Posts: 137
Blog Entries: 1

Rep: Reputation: 17
I have a similar problem. Box goes into near-lockup, yet top shows no excessive anything. All I get is insane lag and constant hdd activity. I have yet to figure this out.
 
Old 02-13-2010, 12:03 AM   #9
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
Quote:
Originally Posted by Skillz View Post
I'd like to believe that my server hasn't been rootkitted, as I am the only one with root level access to it.

As for shutting down non required services such as the ones you mentioned, lets say I do end up releasing the load instantly after I shut down say apache, so now I know that apache is the culprit. What can I do to find out what is causing apache to run the server into over time?
You can swap the document-root for your web server to point to anotherlocation with just a simple index.html file on it (no php, not anything else, just plain and simple html or text). That will show you if the problem is specific to your apache installation (or php or whatever else) or it depends on the contents of your web.

I have no idea how complex your web is, and I have no idea of the volume of visits that you have usually. So I can't know if that load is normal (and you are in fact operating over the capabilities of your hardware) or if there's a real problem, a bug in apache or your web site or it's an attack of some kind.

You should start analyzing the output of ps -lA, note down the PID for apache, then start checking the rest of the processes and look for those that have the apache PID on the PPID (parent PID) field. Those will be the apache children. Usually you will see things like php-cgi, mysql and the like. Note that some of these might descend from a previous incarnation of php-cgi and not directly from apache.

Once you've found all the children you can start figuring out what the problem is. For example, if you have 500 instances of php-cgi then the problem is related to php. That's only informative, the problem could still be in your configuration, in your web, in php or even in apache.

If your web has many parts, like a forum, an image gallery, a blog, etc. etc., you should as well try to disable some of these and see what happens. Also, if you have some kind of automated posting or registration mechanism you should make sure you have sane timings configured so spambots don't try to register or login every 2 seconds.
 
Old 02-14-2010, 12:40 AM   #10
Skillz
Member
 
Registered: Sep 2007
Posts: 252

Original Poster
Rep: Reputation: 32
I run Web Host Manager/cPanel on my box with around 14 web sites. Total I probably receive around 3 million to 3.5 million page hits a month. Server is an Intel e6750, 2Gb ram, 500Gb hard drive, 250Gb hard drive and a 100Mbps port speed. I've also noticed the high loads during off peak times of the day (2am for example) when not many people are usually viewing the site. Peak hours are usually around 6 - 10PM CST, since one of my biggest sites (~1 million page views a month) is a local car site, the other busiest site is also a local car forum that's ~2 hour time difference that also receives around 1 million page views a month.

I will do what you suggest though, next time I am on while the server's load is really high.
 
Old 02-14-2010, 01:41 AM   #11
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
I am no specialist in web performance by any means. There's a chance that the requirements of the sites you are running are over the top of your hardware, after all you are running 14 sites on a single box, and there's the chance that lots of persons are accessing it at a given time. Sites with dynamic stuff can be very heavy in cpu and ram requirements. For example, imagine the user is uploading or downloading an image or viewing a gallery, php-cgi calls imagemagick or gd (or whatever else) to do the transformations. These are quite heavy in cpu and ram terms. Imagine that 10 users are viewing a gallery at the same time, your cpu can get really busy.

The real deals here are:
  • is all the load legitimate or is there an unwanted app (rootkit or whatever else) wasting your cpu cycles sending spam or the like?
  • is there some site in the middle that is causing heavy load due to a bug?

Identifying the processes as said above could bring a bit of light into the matter. If the offender is apache or php, identifying the responsible web site which is causing the problem will also be very useful.
 
Old 02-14-2010, 03:39 AM   #12
speck
Member
 
Registered: Nov 2001
Location: US
Distribution: Slackware 14.2
Posts: 375

Rep: Reputation: 115Reputation: 115
You might want to start running the sysstat (sar, iostat, etc.) utilities to see if you can track down the problem, that's probably your best option. They're most likely already installed on your server.
 
Old 02-15-2010, 03:20 PM   #13
Skillz
Member
 
Registered: Sep 2007
Posts: 252

Original Poster
Rep: Reputation: 32
Well I think it's apache. The server's load just started to climb, it got to around 8.0 when I shut down apache completely. As soon as I did that, the server load started to come back down.

Now I just need to figure out why. Now I need to see which actual site is the culprit, and/or which script is causing the problems. How do I go about in doing that?
 
Old 02-15-2010, 04:00 PM   #14
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
I'd first check post #9 again, try to change your document-root to point to an empty index.html file and see if apache still goes mad. In that case it's probably some bug in your apache installation. If not you are probably going to need to move all the sites elsewhere, and then put them back one by one and see what happens.
 
Old 02-15-2010, 04:04 PM   #15
Skillz
Member
 
Registered: Sep 2007
Posts: 252

Original Poster
Rep: Reputation: 32
Well I found something interesting when I ran the netstat command.

Quote:
tcp 1 40544 server_ip:http
66-214-210-46.dhcp.re:55670 CLOSE_WAIT
tcp 1 89776 server_ip:http
66-214-210-46.dhcp.re:55671 CLOSE_WAIT
tcp 1 98464 server_ip:http
66-214-210-46.dhcp.re:55668 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55669 TIME_WAIT
tcp 1 221544 server_ip:http
66-214-210-46.dhcp.re:55666 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55664 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55665 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55679 TIME_WAIT
tcp 1 111496 server_ip:http
66-214-210-46.dhcp.re:55676 CLOSE_WAIT
tcp 1 83984 server_ip:http
66-214-210-46.dhcp.re:55674 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55675 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55672 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55654 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55655 TIME_WAIT
tcp 0 0 server_ip:http
c-98-197-221-115.hsd1:33061 ESTABLISHED
tcp 1 39096 server_ip:http
66-214-210-46.dhcp.re:55650 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55648 TIME_WAIT
tcp 1 201272 server_ip:http
66-214-210-46.dhcp.re:55662 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55660 TIME_WAIT
tcp 1 178104 server_ip:http
66-214-210-46.dhcp.re:55658 CLOSE_WAIT
tcp 1 127424 server_ip:http
66-214-210-46.dhcp.re:55659 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55657 TIME_WAIT
tcp 1 40544 server_ip:http
66-214-210-46.dhcp.re:55638 CLOSE_WAIT
tcp 1 120184 server_ip:http
66-214-210-46.dhcp.re:55639 CLOSE_WAIT
tcp 1 52128 server_ip:http
66-214-210-46.dhcp.re:55634 CLOSE_WAIT
tcp 1 172312 server_ip:http
66-214-210-46.dhcp.re:55632 CLOSE_WAIT
tcp 1 59368 server_ip:http
66-214-210-46.dhcp.re:55646 CLOSE_WAIT
tcp 1 97016 server_ip:http
66-214-210-46.dhcp.re:55647 CLOSE_WAIT
tcp 1 227336 server_ip:http
66-214-210-46.dhcp.re:55644 CLOSE_WAIT
tcp 1 162176 server_ip:http
66-214-210-46.dhcp.re:55645 CLOSE_WAIT
tcp 0 0 server_ip:http
c-98-197-221-115.hsd1:33049 TIME_WAIT
tcp 1 111496 server_ip:http
66-214-210-46.dhcp.re:55622 CLOSE_WAIT
tcp 1 94120 server_ip:http
66-214-210-46.dhcp.re:55623 CLOSE_WAIT
tcp 1 99912 server_ip:http
66-214-210-46.dhcp.re:55620 CLOSE_WAIT
tcp 1 111496 server_ip:http
66-214-210-46.dhcp.re:55621 CLOSE_WAIT
tcp 1 31856 server_ip:http
66-214-210-46.dhcp.re:55619 CLOSE_WAIT
tcp 1 140456 server_ip:http
66-214-210-46.dhcp.re:55616 CLOSE_WAIT
tcp 0 0 server2.skyhighhostin:13707 localhost:http
ESTABLISHED
tcp 1 234576 server_ip:http
66-214-210-46.dhcp.re:55630 CLOSE_WAIT
tcp 1 396752 server_ip:http
66-214-210-46.dhcp.re:55631 CLOSE_WAIT
tcp 1 47784 server_ip:http
66-214-210-46.dhcp.re:55628 CLOSE_WAIT
tcp 1 118736 server_ip:http
66-214-210-46.dhcp.re:55626 CLOSE_WAIT
tcp 1 111496 server_ip:http
66-214-210-46.dhcp.re:55627 CLOSE_WAIT
tcp 1 282360 server_ip:http
66-214-210-46.dhcp.re:55607 CLOSE_WAIT
tcp 0 0 server_ip:http
b3091129.crawl.yahoo.:34590 TIME_WAIT
tcp 1 375032 server_ip:http
66-214-210-46.dhcp.re:55605 CLOSE_WAIT
tcp 0 13140 server_ip:http
chello089072016019.ch:62288 ESTABLISHED
tcp 1 91224 server_ip:http
66-214-210-46.dhcp.re:55614 CLOSE_WAIT
tcp 1 117288 server_ip:http
66-214-210-46.dhcp.re:55615 CLOSE_WAIT
tcp 0 0 server_ip:http
93-44-155-34.ip97.fas:52864 TIME_WAIT
tcp 1 85432 server_ip:http
66-214-210-46.dhcp.re:55610 CLOSE_WAIT
tcp 1 286704 server_ip:http
66-214-210-46.dhcp.re:55611 CLOSE_WAIT
tcp 1 75296 server_ip:http
66-214-210-46.dhcp.re:55590 CLOSE_WAIT
tcp 1 115840 server_ip:http
66-214-210-46.dhcp.re:55589 CLOSE_WAIT
tcp 1 147696 server_ip:http
66-214-210-46.dhcp.re:55586 CLOSE_WAIT
tcp 1 147696 server_ip:http
66-214-210-46.dhcp.re:55587 CLOSE_WAIT
tcp 1 127424 server_ip:http
66-214-210-46.dhcp.re:55584 CLOSE_WAIT
tcp 1 94120 server_ip:http
66-214-210-46.dhcp.re:55598 CLOSE_WAIT
tcp 1 75296 server_ip:http
66-214-210-46.dhcp.re:55597 CLOSE_WAIT
tcp 1 147696 server_ip:http
66-214-210-46.dhcp.re:55594 CLOSE_WAIT
tcp 1 362000 server_ip:http
66-214-210-46.dhcp.re:55592 CLOSE_WAIT
tcp 1 175208 server_ip:http
66-214-210-46.dhcp.re:55575 CLOSE_WAIT
tcp 1 114392 server_ip:http
66-214-210-46.dhcp.re:55572 CLOSE_WAIT
tcp 1 299736 server_ip:http
66-214-210-46.dhcp.re:55573 CLOSE_WAIT
tcp 0 0 server_ip:http
85-17-94-142.hosted-b:50424 TIME_WAIT
tcp 1 81088 server_ip:http
66-214-210-46.dhcp.re:55571 CLOSE_WAIT
tcp 1 95568 server_ip:http
66-214-210-46.dhcp.re:55568 CLOSE_WAIT
tcp 1 137560 server_ip:http
66-214-210-46.dhcp.re:55580 CLOSE_WAIT
tcp 0 0 server_ip:http
unknown.Level3.net:15695 TIME_WAIT
tcp 1 88328 server_ip:http
66-214-210-46.dhcp.re:55578 CLOSE_WAIT
tcp 1 108600 server_ip:http
66-214-210-46.dhcp.re:55579 CLOSE_WAIT
tcp 1 118736 server_ip:http
66-214-210-46.dhcp.re:55576 CLOSE_WAIT
tcp 1 165072 server_ip:http
66-214-210-46.dhcp.re:55567 CLOSE_WAIT
tcp 0 0 server_ip:http
ABordeaux-153-1-1:rapidbase TIME_WAIT
tcp 0 33397 server_ip:http
dsl-189-226-162-74-dy:55027 FIN_WAIT1
tcp 0 0 server_ip:http
cpc2-stav3-0-0-:rmiregistry TIME_WAIT
tcp 0 75296 server_ip:http
66-214-210-46.dhcp.re:55750 ESTABLISHED
tcp 0 90776 server_ip:http
66-214-210-46.dhcp.re:55751 ESTABLISHED
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55748 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55749 TIME_WAIT
tcp 1 37648 server_ip:http
66-214-210-46.dhcp.re:55746 CLOSE_WAIT
tcp 0 76744 server_ip:http
66-214-210-46.dhcp.re:55744 ESTABLISHED
tcp 0 0 server_ip:http
crawl-66-249-65-103.g:48948 TIME_WAIT
tcp 0 0 server_ip:7327 83.140.172.210:ircd
ESTABLISHED
tcp 0 43440 server_ip:http
66-214-210-46.dhcp.re:55756 ESTABLISHED
tcp 0 72271 server_ip:http
66-214-210-46.dhcp.re:55757 ESTABLISHED
tcp 0 33304 server_ip:http
66-214-210-46.dhcp.re:55754 ESTABLISHED
tcp 0 110048 server_ip:http
66-214-210-46.dhcp.re:55755 ESTABLISHED
tcp 0 68056 server_ip:http
66-214-210-46.dhcp.re:55752 ESTABLISHED
tcp 0 53576 server_ip:http
66-214-210-46.dhcp.re:55753 ESTABLISHED
tcp 1 56472 server_ip:http
66-214-210-46.dhcp.re:55734 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55735 TIME_WAIT
tcp 1 41992 server_ip:http
66-214-210-46.dhcp.re:55732 CLOSE_WAIT
tcp 1 94120 server_ip:http
66-214-210-46.dhcp.re:55733 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55730 TIME_WAIT
tcp 1 95568 server_ip:http
66-214-210-46.dhcp.re:55731 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55729 TIME_WAIT
tcp 0 0 server_ip:http
8.9.36.228:networklenss TIME_WAIT
tcp 0 53576 server_ip:http
66-214-210-46.dhcp.re:55742 ESTABLISHED
tcp 0 28960 server_ip:http
66-214-210-46.dhcp.re:55743 ESTABLISHED
tcp 1 81088 server_ip:http
66-214-210-46.dhcp.re:55740 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55741 TIME_WAIT
tcp 0 24616 server_ip:http
66-214-210-46.dhcp.re:55738 ESTABLISHED
tcp 0 0 server2.skyhighhostin:32060
zeropoint2.student.utw:http ESTABLISHED
tcp 0 31856 server_ip:http
66-214-210-46.dhcp.re:55739 ESTABLISHED
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55736 TIME_WAIT
tcp 1 94120 server_ip:http
66-214-210-46.dhcp.re:55718 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55716 TIME_WAIT
tcp 1 37648 server_ip:http
66-214-210-46.dhcp.re:55715 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55712 TIME_WAIT
tcp 0 1 server_ip:http
71-222-202-41.albq.qw:62134 CLOSING
tcp 0 0 server_ip:http
71-222-202-41.albq.qw:62137 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55724 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55725 TIME_WAIT
tcp 1 70952 server_ip:http
66-214-210-46.dhcp.re:55722 CLOSE_WAIT
tcp 1 27512 server_ip:http
66-214-210-46.dhcp.re:55723 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55720 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55702 TIME_WAIT
tcp 1 133216 server_ip:http
66-214-210-46.dhcp.re:55700 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55701 TIME_WAIT
tcp 0 0 server_ip:http
vip196.tourian.jchost:17482 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55696 TIME_WAIT
tcp 1 127424 server_ip:http
66-214-210-46.dhcp.re:55710 CLOSE_WAIT
tcp 1 250504 server_ip:http
66-214-210-46.dhcp.re:55711 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55708 TIME_WAIT
tcp 1 114392 server_ip:http
66-214-210-46.dhcp.re:55709 CLOSE_WAIT
tcp 1 133216 server_ip:http
66-214-210-46.dhcp.re:55706 CLOSE_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55707 TIME_WAIT
tcp 0 82940 server_ip:http
host-78-15-1:isoipsigport-1 ESTABLISHED
tcp 0 0 server_ip:smtp 151.56.53.40:4491
ESTABLISHED
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55684 TIME_WAIT
tcp 1 133216 server_ip:http
66-214-210-46.dhcp.re:55685 CLOSE_WAIT
tcp 1 181000 server_ip:http
66-214-210-46.dhcp.re:55682 CLOSE_WAIT
tcp 1 204168 server_ip:http
66-214-210-46.dhcp.re:55683 CLOSE_WAIT
tcp 1 99912 server_ip:http
66-214-210-46.dhcp.re:55680 CLOSE_WAIT
tcp 1 205616 server_ip:http
66-214-210-46.dhcp.re:55681 CLOSE_WAIT
tcp 0 0 server2.skyhighhostin:18554
zeropoint2.student.utw:http ESTABLISHED
tcp 0 0 server_ip:http
71-222-202-41.albq.qw:62105 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55694 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55695 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55692 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55693 TIME_WAIT
tcp 1 250504 server_ip:http
66-214-210-46.dhcp.re:55690 CLOSE_WAIT
tcp 0 0 server_ip:http
71-222-202-41.albq.qw:62108 TIME_WAIT
tcp 0 0 server_ip:http
66-214-210-46.dhcp.re:55688 TIME_WAIT
tcp 1 78192 server_ip:http
66-214-210-46.dhcp.re:55689 CLOSE_WAIT
Lot of connections from 66.215.210.46. I used iptables to block all incoming connections from that IP and so far the server load hasn't spiked. Is that normal to have that many simultaneous connections from the same host?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
how to copy drive using dd and tee command parallely? source code of dd command mdfakkeer Linux - Software 1 02-10-2010 01:31 PM
URGENT! Is there any command to get a history command lines and time in SUSE Linux.? igsoper Linux - Software 5 06-25-2009 02:14 AM
LXer: The Linux Command Shell For Beginners: Fear Not The Command Line! LXer Syndicated Linux News 0 12-22-2008 06:30 PM
My error in mkisofs command to make a command line iso mg92865 Linux - Newbie 1 06-20-2008 11:43 AM
startx command in FC7 reverts me back to the command prompt sriram87 Linux - Newbie 5 01-03-2008 11:18 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 05:48 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration