12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Host Your Own Internet Speed Tester With LibreSpeed</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Linux,Debian,LibreSpeed,Speed Test,Self-Hosted,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Host Your Own Internet Speed Tester With LibreSpeed">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="05/28/2022 07:07:37 AM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Host Your Own Internet Speed Tester With LibreSpeed</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Basic Installation</h2>
- <ol>
- <li>Log into the Debian/Ubuntu device</li>
- <li>Run the following commands in a terminal:<br />
- <code class="codeBlock"># update repositories and install any available software updates<br />
- sudo apt update<br />
- sudo apt upgrade<br />
- # install Apache HTTPD, PHP and GIT<br />
- sudo apt install git apache2 php libapache2-mod-php<br />
- # clone the git repo<br />
- sudo git clone https://github.com/adolfintel/speedtest /var/www/html/speedtest<br />
- sudo cp /var/www/html/speedtest/example-singleServer-gauges.html /var/www/html/speedtest/index.html<br />
- # set the owner of the new speedtest directory to www-data<br />
- sudo chown -R www-data:www-data /var/www/html/speedtest</code></li>
- <li>Open a web browser and navigate to http://DNSorIP/speedtest</li>
- <li>The basic speed test functionality will be available, but it lacks the abillity to save and share speed test results. Let's add a database to enable those features</li>
- </ol>
- <h2>Optional Advanced Installation Steps</h2>
- <ol>
- <li>Continue the installation by running the following commands in a terminal:<br />
- <code class="codeBlock"># install MySQL/MariaDB<br />
- sudo apt install mariadb-server mariadb-client php-mysql<br />
- sudo su<br />
- mysql_secure_installation</code></li>
- <li>Press Enter to login as root</li>
- <li>Type Y and press Enter to set a root password, type the password twice to confirm</li>
- <li>Type Y and press Enter to remove anonymous users</li>
- <li>Type Y and press Enter to disallow root login remotely</li>
- <li>Type Y and press Enter to remove the test database</li>
- <li>Type Y and press Enter to reload privilege tables</li>
- <li>Run the following command to login into MySQL: <code class="codeBlock">mysql -u root -p</code></li>
- <li>Authenticate with the root password set earlier</li>
- <li>Run the following commands to create the speedtest database and database user <code class="codeBlock">MariaDB [(none)]> CREATE DATABASE speedtest;<br />
- MariaDB [(none)]> GRANT ALL ON speedtest.* to 'speedtest'@'localhost' IDENTIFIED BY 'Sp33dTest!!';<br />
- MariaDB [(none)]> FLUSH PRIVILEGES;<br />
- MariaDB [(none)]> USE speedtest;<br />
- MariaDB [(none)]> \. /var/www/html/speedtest/results/telemetry_mysql.sql<br />
- MariaDB [(none)]> EXIT;<br />
- exit</code></li>
- <li>Continue with the following commands to setup the speedtest database<br />
- <code class="codeBlock"># edit telemetry_settings.php<br />
- sudo nano /var/www/html/speedtest/results/telemetry_settings.php</code></li>
- <li>Verify/change $db_type = 'mysql';</li>
- <li>Change $stats_password = 'P@$$w0rD';</li>
- <li>Change $enable_id_obfuscation = true;</li>
- <li>Update the Mysql Settings variables to the credentials created earlier
- <p>$MySql_username = 'speedtest';<br />
- $MySql_password = 'Sp33dTest!!';<br />
- $MySql_hostname = 'localhost';<br />
- $MySql_databasename = 'speedtest';</p>
- </li>
- <li>Press CTRL+O, Enter, CTRL+X to write the changes to telemetry_settings.php</li>
- <li>Continue with the following commands in terminal:<br />
- <code class="codeBlock"># copy an example page with telemetry enabled<br />
- sudo cp /var/www/html/speedtest/example-singleServer-full.html /var/www/html/speedtest/index.html<br />
- # restart the apache2 service to enable MySQL<br />
- sudo systemctl restart apache2</code></li>
- <li>Open a web browser and navigate to http://DNSorIP/speedtest</li>
- <li>This time around the speedtest results have been saved to the database and a link is provided to share the results</li>
- </ol>
- <p>More Info: <a href="https://github.com/librespeed/speedtest" target="_blank">https://github.com/librespeed/speedtest</a></p>
- </div>
- </div>
- </body>
- </html>
-
|