This repository was archived by the owner on Oct 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +19
-9
lines changed
Expand file tree Collapse file tree 2 files changed +19
-9
lines changed Original file line number Diff line number Diff line change @@ -34,17 +34,23 @@ Sample commands:
34342 . Execute the deployment script: ` ./bin/deploy-torrust-demo.com.sh ` .
35353 . Execute the smoke tests:
3636
37- ``` console
38- cargo run --bin udp_tracker_client announce 144.126.245.19:6969 9c38422213e30bff212b30c360d26f9a02136422
37+ ``` console
38+ cargo run --bin udp_tracker_client announce 144.126.245.19:6969 9c38422213e30bff212b30c360d26f9a02136422
3939
40- cargo run --bin http_tracker_client announce 144.126.245.19:6969 9c38422213e30bff212b30c360d26f9a02136422
40+ cargo run --bin http_tracker_client announce 144.126.245.19:6969 9c38422213e30bff212b30c360d26f9a02136422
4141
42- TORRUST_CHECKER_CONFIG='{
43- "udp_trackers": ["144.126.245.19:6969"],
44- "http_trackers": ["https://tracker.torrust-demo.com"],
45- "health_checks": ["https://tracker.torrust-demo.com/api/health_check"]
46- }' cargo run --bin tracker_checker
47- ```
42+ TORRUST_CHECKER_CONFIG='{
43+ "udp_trackers": ["144.126.245.19:6969"],
44+ "http_trackers": ["https://tracker.torrust-demo.com"],
45+ "health_checks": ["https://tracker.torrust-demo.com/api/health_check"]
46+ }' cargo run --bin tracker_checker
47+ ```
48+
49+ 4. Check the logs of the tracker container to see if everything is working:
50+
51+ ```console
52+ ./share/bin/tracker-filtered-logs.sh
53+ ```
4854
4955## TODO
5056
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ # It filter out known error log messages from the tracker logs
4+ docker compose logs -f tracker | grep -v -F -e " Invalid announce event" -e ' Connection cookie error' -e INFO -e " Invalid action" -e " Udp::run_udp_server::loop aborting request" -e " Port can't be 0" -e " Protocol identifier missing" -e " Couldn't parse action"
You can’t perform that action at this time.
0 commit comments