{"id":17090,"date":"2015-04-25T14:59:25","date_gmt":"2015-04-25T19:59:25","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=17090"},"modified":"2022-12-14T07:03:25","modified_gmt":"2022-12-14T13:03:25","slug":"how-to-run-your-own-speed-test-server-with-speedtest-net-mini","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-run-your-own-speed-test-server-with-speedtest-net-mini\/","title":{"rendered":"How to run your own speed test server with Speedtest.net Mini"},"content":{"rendered":"
Speedtest.net is one of the most popular internet speed tests. It is very helpful if you want to determine your Internet download and upload speed. They have a mini version of the application – Speedtest.net Mini which can be installed locally to do basic tests and check the upload and download speed of your server.<\/p>\n
<\/p>\n
In this blog article we will install the self hosted version of Speedtest.net on a CentOS 7 VPS<\/a> with Apache web server and PHP. The installation is very simple and fast.<\/p>\n First of all. log in to your server as user root and make sure that all packages are up to date<\/p>\n Speedtest.net Mini is can run with all major web servers. In our case we will use Apache web server with PHP. So let’s install Apache and PHP on our CentOS 7 machine<\/p>\n Start the Apache web server and enable it to start at boot<\/p>\n Install PHP and few PHP modules<\/p>\n Go to their official website and download the Speedtet.net Mini Server. Please note that you need to create an account and login to be able to download the archive<\/p>\n Unzip the downloaded zip archive to the Apache document root directory<\/p>\n To find Apache’s document root directory execute the following command<\/p>\n As we can see in the output a document root directory is \/var\/www\/html<\/p>\n There are several index files in the SpeedTest Mini directory. Since we will use Apache and PHP we need to rename the ‘index-php.html’ file<\/p>\n If you want to update your existing SpeedTest Mini installation, you just need to download the latest release from their official website and unpack the zip packages over the existing files in ‘\/var\/www\/html\/mini’. It is recommended to do the update every few months.<\/p>\n Finally, open your favorite web browser and point it to http:\/\/yourdomain.com\/mini and start testing your server speed.<\/p>\n Of course you don\u2019t have to do any of this if you use one of our Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install SpeedTest Mini for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n PS.<\/strong><\/span> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":" Speedtest.net is one of the most popular internet speed tests. It is very helpful if you want to determine your … <\/p>\nyum -y update<\/pre>\n
yum install httpd<\/pre>\n
systemctl start httpd<\/pre>\n
yum install php php-mysql php-gd php-mcrypt<\/pre>\n
wget http:\/\/c.speedtest.net\/mini\/mini.zip<\/pre>\n
yum -y install unzip\r\nunzip mini.zip -d \/var\/www\/html\/<\/pre>\n
grep -i \"^documentroot\" \/etc\/httpd\/conf\/httpd.conf\r\nDocumentRoot \"\/var\/www\/html\"<\/pre>\n
cd \/var\/www\/html\/mini\/\r\nmv index-php.html index.html<\/pre>\n