How to Test Upload/Download Speed of Your Web Server?


If your home-use broadband has allocated a dedicated IP for you, then it is possible in theory (but not practise) to set up a webserver for your website. This is due to the fact that the upload speed is usually not fast enough. The upload speed of the webserver maps to the download speed to your visitors.

I am using VPS at QuickHostUK and wondering how much speed it is compared to the broadband at home.

You can install a Python script by the following commands on your SSH.

1
2
3
4
$ wget https://raw.github.com/sivel/speedtest-cli/master/speedtest_cli.py
$ chmod a+rx speedtest_cli.py
$ sudo mv speedtest_cli.py /usr/local/bin/speedtest-cli
$ sudo chown root:root /usr/local/bin/speedtest-cli
$ wget https://raw.github.com/sivel/speedtest-cli/master/speedtest_cli.py
$ chmod a+rx speedtest_cli.py
$ sudo mv speedtest_cli.py /usr/local/bin/speedtest-cli
$ sudo chown root:root /usr/local/bin/speedtest-cli

Use the command speedtest-cli to test the speed:

speedtest How to Test Upload/Download Speed of Your Web Server? internet linux tools / utilities ubuntu webhosting

Speed Test of Web Server

Add command line parameter –share to generate a PNG picture to share.

quickhost-vps-speed How to Test Upload/Download Speed of Your Web Server? internet linux tools / utilities ubuntu webhosting

Quickhost UK VPS speed test

The upload speed is more than 80Mb/s while my home-use broadband only offers around 2Mb/s upload speed.

1
2
3
4
5
6
7
8
9
10
11
12
root@uploadbeta:~# speedtest-cli --share
Retrieving speedtest.net configuration...
Retrieving speedtest.net server list...
Testing from UK Dedicated Servers Limited (X.X.X.X)...
Selecting best server based on latency...
Hosted by Excell Group PLC (London) [2.52 km]: 10.466 ms
Testing download speed........................................
Download: 67.92 Mbits/s
Testing upload speed..................................................
Upload: 84.22 Mbits/s
Share results: http://www.speedtest.net/result/3858774271.png
root@uploadbeta:~# 
root@uploadbeta:~# speedtest-cli --share
Retrieving speedtest.net configuration...
Retrieving speedtest.net server list...
Testing from UK Dedicated Servers Limited (X.X.X.X)...
Selecting best server based on latency...
Hosted by Excell Group PLC (London) [2.52 km]: 10.466 ms
Testing download speed........................................
Download: 67.92 Mbits/s
Testing upload speed..................................................
Upload: 84.22 Mbits/s
Share results: http://www.speedtest.net/result/3858774271.png
root@uploadbeta:~# 

Related VPS Post: How to Unlock the 1GB/Bps speed for VPS?

–EOF (The Ultimate Computing & Technology Blog) —

GD Star Rating
loading...
422 words
Last Post: FillInteger Implementation in Delphi/Object Pascal
Next Post: How to Plot 3D Line Vectors in Matlab Using quiver3 ?

The Permanent URL is: How to Test Upload/Download Speed of Your Web Server?

Leave a Reply