LXC container mit Komodo ausgerollt (Proxmox Helper Scripts)
1 |
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/komodo.sh)" |
Anschließend den Stack eingerichtet und folgende compose kopiert:
https://github.com/henrywhitaker3/Speedtest-Tracker
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
version: '3.3' services: speedtest: container_name: speedtest image: henrywhitaker3/speedtest-tracker ports: - 8765:80 volumes: - ./config:/config environment: - TZ=Europe/Berlin - PGID= - PUID= - OOKLA_EULA_GDPR=true logging: driver: "json-file" options: max-file: "10" max-size: "200k" restart: unless-stopped |
Settings und Server entsprechend angepaßt.
Es kam keinerlei Messungen zustande.
Logs ergab foglende Meldungen:
1 |
{"type":"log","timestamp":"2025-05-01T22:00:12Z","message":"Configuration - No servers defined (NoServersException)","level":"error"} |
Scheinbar waren die meisten eingetragenen Server nicht mehr erreichbar.
In Console geschaltet:
1 2 3 4 5 6 |
/config/www/app/Bin# ./speedtest --servers Closest servers: ID Name Location Country ============================================================================== viele unterschiedliche Server |
anschließend einen augewählt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
/config/www/app/Bin# ./speedtest -s 12345 ============================================================================== You may only use this Speedtest software and information generated from it for personal, non-commercial use, through a command line interface on a personal computer. Your use of this software is subject to the End User License Agreement, Terms of Use and Privacy Policy at these URLs: https://www.speedtest.net/about/eula https://www.speedtest.net/about/terms https://www.speedtest.net/about/privacy ============================================================================== Do you accept the license? [type YES to accept]: YES License acceptance recorded. Continuing. Speedtest by Ookla Server: Example AG - Berlin (id = 12345) ISP: Example Latency: 12.73 ms (1.57 ms jitter) Download: 928.69 Mbps (data used: 957.7 MB) Upload: 104.98 Mbps (data used: 53.9 MB) Packet Loss: 0.0% Result URL: https://www.speedtest.net/result/c/c849xxxx-xxxxx-xxxx-xxxx-e2b96xxxxxx |
Wichtig ist hier die Annahme der Lizenzbedingen.
Danach funktionierte alles wie erwartet.