Load Test Server

Click on the links below to download files and generate load on the load balancer:

Download 10MB File (10 megabytes) Download 50MB File (50 megabytes) Download 100MB File (100 megabytes)

Load Testing with curl

Use these commands to generate load:

Single request (10MB):

curl -O https://load-test.united-remote.dev/10mb.bin

10 parallel requests (500MB total):

for i in {1..10}; do curl -O "https://load-test.united-remote.dev/50mb.bin?req=$i" & done; wait

100 parallel requests (1GB total):

for i in {1..100}; do curl -s -o /dev/null "https://load-test.united-remote.dev/10mb.bin?req=$i" & done; wait

Continuous load (infinite loop):

while true; do curl -s -o /dev/null https://load-test.united-remote.dev/50mb.bin; done

Heavy load with Apache Bench (if installed):

ab -n 1000 -c 50 https://load-test.united-remote.dev/10mb.bin