Questions tagged [test]

46 questions
1
vote
3 answers

Web Server (Intranet) Availability Test Script/Program

After rebooting a number of web servers (around 40), I would like to be able to quickly test each one to ensure that they are all up, running and will return an HTTP 200 code when called. Please can you suggest a script or tool to do this? I should…
Techboy
  • 1,550
  • 7
  • 31
  • 49
1
vote
2 answers

How to view test results in Hudson?

I cannot find a link to test results in hudson. How do I view test results (i.e. which of the tests failed) in Hudson web interface? I have "Publish JUnit test result report" checked for the project. I'm pretty sure that "Test report XMLs" has the…
Max Kosyakov
  • 173
  • 3
  • 7
1
vote
1 answer

Distributed leftover bandwidth testing

Faced with the task of testing the leftover bandwidth capacity for 100+ locations multiple times a day, I asked myself if there is some sort of software package you can install on these computers and have them make upload/download tests, then report…
keyboardsamurai
  • 271
  • 2
  • 6
0
votes
0 answers

Configurable Stateful Traffic Generator Advice

I need a traffic generator tool which I should be able to configure followings; Number of Packets Number of Sessions Number of TCP, UDP packets Average number of packets in a session Average packet size Standard deviation of packet sizes Average…
0
votes
2 answers

Is there a service I can run which will automatically test CPU/RAM/hardware in the background?

Is there any service which runs in the background, and does the job of prime95 (i.e. it tests server CPU/RAM for integrity now and again)? Regards, Shane. p.s. The reason I ask: we recently had some bad RAM on our server, which ended up slowly…
Contango
  • 1,150
  • 5
  • 15
  • 31
0
votes
1 answer

Testing a spam filter

We are testing a new gateway and spam filter infrastructure. In addition to redirecting some accounts I would like to "publish" a test address (corti@test.id.ethz.ch) to attract spam. Is there a way to distribute an email address as honeypot for…
Matteo
  • 467
  • 3
  • 14
0
votes
2 answers

HP Proliant ML110 POST fails with large (4GB) USB Disk attached

I have a HP Proliant ML110 G5 (tower) which fails to boot whenever a large disk (4TB) is attached via USB. The machine displays the HP logo for a very long time (the POST on these machines is long anyway, but in this instance it can be 5 mins or…
questions
  • 45
  • 1
  • 8
0
votes
3 answers

simulating 'n' hits per second, per user to webserver using jmeter

I wanted to stress test by webserver. Here is how i want to do it. I have 'u' different urls on my webserver. so i need to hit these urls in parallel, with a hit rate of 'n' hit per second, per url. what would be the best tool to do this ?
letronje
  • 429
  • 1
  • 6
  • 17
0
votes
4 answers

Rack mounted UPS failure

During a recent power fialure our rack mounted UPS failed after 17 minutes( design time 30 minutes). How often should a rack mounted UPS be tested?
mac
  • 9
  • 1
0
votes
1 answer

How do I study for a basic linux competency test?

Possible Duplicate: Linux knowledge a Junior cannot miss One of the requirements for a position I'm seeking includes some basic linux server administration. I've had some experience so I'm not too worried, but I wouldn't consider myself an…
cwd
  • 2,763
  • 9
  • 33
  • 48
0
votes
1 answer

How do I set up a test server, making it a DNS server?

I am trying to set up a DNS server on Ubuntu 11.04. The main reason I want to have this DNS server is so I can create a server specifically for testing before making the code live. Creating this DNS server would allow the code to be run on this test…
Will
  • 1
0
votes
3 answers

Shell Script = Command "Test" = Simple Question

an excerpt of a startup script looks like this: ENABLED=1 test "$ENABLED" != "0" || exit 0 The problem is, no matter if Enabled is set to 0 or 1, the script always exits at that line. I looked up "man test" and as far as I understand it, test will…
jens
  • 1,001
  • 1
  • 10
  • 10
0
votes
2 answers

Look through Apache Requests

is there any way to grab REQUEST variables as well as other apache information for each request processed? This would especially be handy through a load balancer and proxy as well in order to track each step of the process to an end web server.
ty91011
  • 1
  • 1
0
votes
3 answers

Test Linux server internet speed from command line up to 1gbit/s

Does anyone know a way I can test a Linux servers connection speed from ssh? I could use wget but I can't find a file that can be downloaded fast enough. I'm trying to verify that the server can do a gigabit per second.
Alias
0
votes
1 answer

Is there a list of public "POST test" webpages like this one?

For various automated tests that I do, I need to be able to make a POST HTTP & HTTPS request to some external URL and essentially have that webpage "echo" what I sent. For example, if I send the POST variable "meow" with the value "bark", I want…