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
  • 相关阅读:
    qt截取屏幕
    使用XmlTextReader 读取XML
    QQ2010 SP2 美化 皮肤 修改 透明 托盘 图标 RES.RDB 解包 打包 去广告 显IP
    发一个linux串口监视工具
    linux打包压缩命令汇总
    Qt实现遍历文件夹和文件目录(递归)
    linux忘记root密码的恢复方法
    centos x8664位版本 想安装qq for linux
    删除所有的.svn文件夹
    qtsdk1.2.1 静态编译
  • 原文地址:https://www.cnblogs.com/dengcongcong/p/11613577.html
Copyright © 2011-2022 走看看