| 1 | |
| 2 | = Pinging the JMD = |
| 3 | |
| 4 | The "wget" utility can be used to "ping" the JMD to make sure it is responding. The command : |
| 5 | |
| 6 | {{{ |
| 7 | wget http://localhost:8080/JMD/JMD |
| 8 | }}} |
| 9 | |
| 10 | when run on the machine that is running the JMD should write a file named "JMD" that is the JMD's response when it |
| 11 | is queried with no arguments (which is simply to list some of the parameters it is running with). The file should |
| 12 | look something like this : |
| 13 | |
| 14 | {{{ |
| 15 | MIRROR POOL TOTAL THREADS:30 |
| 16 | MIRROR POOL QUEUE size:0 |
| 17 | MIRROR POOL ACTIVE THREADS:0 |
| 18 | MIRROR POOL THREADS AVAIL:30 |
| 19 | USER POOL TOTAL THREADS:30 |
| 20 | USER POOL QUEUE size:0 |
| 21 | USER POOL ACTIVE THREADS:0 |
| 22 | USER POOL THREADS AVAIL:30 |
| 23 | NEW=0 |
| 24 | QUEUED=0 |
| 25 | READY=0 |
| 26 | PENDING=0 |
| 27 | DONE=2 |
| 28 | TIMEOUT=0 |
| 29 | FAILED=0 |
| 30 | AVERAGE_DOWNLOAD=9.905377 MB/s |
| 31 | }}} |
| 32 | |