|
Hello
Some how our server is being over run by outgoing emails, which we think are spam. We normally use plesk to administer it but it is currently crashing.
If we do a
ps aux | grep 'qmail'
We get about 200 of these
qmailq 25340 0.0 0.0 2640 408 ? D ...
Started by neilc on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
This might show if someone is forwarding mail.
Someone is connecting, but how? Run netstat -tp .
|
|
One of my custom developed asp.net sites was hacked today: "Hacked By Swan ( Please Stop Wars !.. )" It is using asp,net and SQL Server 2005 and IIS 6.0 and Windows 2003 server. I am not using Ajax and I think I am using stored procedures everywhere I...
Started by Imageree on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Then use this guide.
Then it's probably helpful to figure out how to use log parser (from Microsoft), which is free.
|
|
To execute an Agile project you first need a contract. No contract – no project! No project – no Agile, SCRUM or whatsoever!
The contract, if we are talking about mid to big projects, must have well defined safety triggers. I.e. customers want to be very...
Started by Dandikas on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
This takes a fair amount of trust, but since we've been working regular deployments are... .
Of the process itself -- a couple of paragraphs -- explaining how the project is a cooperative venture between implement and how long it really takes.
|
Ask your Facebook Friends
|
During execution, how can a java program tell how much memory it is using?
I don't care how efficient it is!
Started by Ron Tuffin on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It's allocated to the JVM, but not allocated within.
Out how much of that is still available (i.e.
|
|
Hi
how to measure any file weight ?
and how to know how many rows in text file ?
thank's in advance
Started by Gold on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
String filePath; int fileSize; int fileLines
File Size
fileSize = File.OpenRead(path).Length;
Rows count
fileLines = File.ReadAllLines(path).Length;
Or
using (TextReader reader = File.OpenText(path)) { while (reader.ReadLine() != null) { lines++; }
long... .
|
|
How can I find out how many rows a MySQL query returns in Java?
Started by Midday on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you use a CachedRowSet you can know how many rows your statement.
If the result is not scrollable, you can either count the rows by iterating, and counted them afterwards .
Out how many rows rs has.
|
|
How to find how much disk space is left using Java?
Started by Roman Kagan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The problem is that the answer is system.
how to find the free disk space left on my system?”.
|
|
What is the best "how to" site to learn how to program for iPhone?
Answer Snippets (Read the full thread at stackoverflow):
Here is a well written article on "Cocoa is my girlfriend" that describes how to create a small an initial grasp of how to do things) Developer Documentation (part of XCode - try [Alt-double clicking.
|
|
How lightboxes for pics works? they use iframes? how they download pics?
Started by Isus on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Images are usually....
A DIV is placed over top of the overlay that displays the picture and controls .
A translucent overlay is put over the entire screen.
This is similar to a modal dialog.
Usually just by creating an <img> element with JS and DOM .
|
|
How can I determine how much memory a process is using in AIX?
Started by C. Ross on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Have you tried:
ps -p PID -o command,size
where PID is the process ID that you're interested in? .
You can also try nmon but it's third party, so you'll have to download and compile it .
Have you tried topas ? It's pretty good for that sort of thing .
|