zoukankan      html  css  js  c++  java
  • 搭建speedtest

      用于网络测速

    作者:邓聪聪

     [root@note-01 ~]# yum install httpd php git -y
     [root@note-01 ~]# git clone https://github.com/adolfintel/speedtest.git
     [root@note-01 ~]# cd speedtest/
     [root@note-01 speedtest]# cp -R backend/ example-singleServer-pretty.html *.js /var/www/html/
     [root@note-01 html]# mv example-singleServer-pretty.html index.html
     [root@note-01 html]# chown -R apache *
     [root@note-01 html]# systemctl start httpd

    安装数据

     [root@note-01 html]# cd /root/speedtest/
     [root@note-01 speedtest]# cp -R results/ /var/www/html/
     [root@note-01 speedtest]# cd /var/www/html/
     [root@note-01 html]# chown -R apache *
     [root@note-01 html]# cd /var/www/html/results/
     [root@note-01 results]# yum install mariadb-server -y
     [root@note-01 results]# systemctl start mariadb
     [root@note-01 results]# mysql_secure_installation ##设置密码为:123456
     [root@note-01 results]# mysql -uroot -p123456
     MariaDB [(none)]> create database speedtest; ##创建数据库
     MariaDB [(none)]> exit
     [root@note-01 results]# vi telemetry_settings.php
          4$stats_password="admin"; //password to login to stats.php. Change this!!!
          5$enable_id_obfuscation=true; //if setto true, test IDs will be obfuscated to prevent users from guessing URLs of other tests
         11// Mysql settings
         12$MySql_username="root";
         13$MySql_password="123456";
         14$MySql_hostname="localhost";
         15$MySql_databasename="speedtest";
     [root@note-01 results]# mysql -uroot -p speedtest < telemetry_mysql.sql
     [root@note-01 results]# cd /var/www/html/
     [root@note-01 html]# cp ~/speedtest/example-singleServer-full.html index.html
  • 相关阅读:
    Robotframework自动化6-基础关键字介绍(3)
    Robotframework自动化5-基础关键字介绍(2)
    Robotframework自动化4-基础关键字介绍(1)
    Robotframework自动化3-APP启动
    Robotframework自动化2-Windows环境搭建
    Robotframework自动化1-Windows环境搭建
    python2与python3同时安装
    Fiddler的基本界面介绍
    Fiddler的安装和APP抓包
    正则表达式
  • 原文地址:https://www.cnblogs.com/dengcongcong/p/11613577.html
Copyright © 2011-2022 走看看