Changes between Version 7 and Version 8 of RunningTheDistributionClient
- Timestamp:
- Jul 9, 2009, 7:18:46 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RunningTheDistributionClient
v7 v8 41 41 Multiple hosts may be specified as usual. 42 42 43 43 44 Summary information such as faults and copy/extract times can be found in the receiveResult table of the mySQL database, file names and byte size (and other information) in receiveFile: 44 45 {{{ … … 49 50 Example list of files successfully downloaded (fault=0), size, download time, and extraction time: 50 51 {{{ 51 select receiveResult.file_id,receiveFile.file,receiveResult.dtime_copy,receiveRe 52 sult.dtime_extract,receiveFile.bytes from receiveResult,receiveFile where receiv 53 eResult.fault=0 and receiveResult.file_id=receiveFile.file_id;52 SELECT receiveResult.file_id,receiveFile.file,receiveResult.dtime_copy,receiveResult.dtime_extract,receiveFile.bytes 53 FROM receiveResult,receiveFile 54 WHERE receiveResult.fault=0 and receiveResult.file_id=receiveFile.file_id; 54 55 }}} 55 56 56 Is/will there be functionality in ippMonitor to access this information? 57 Is/will there be functionality in ippMonitor to access/monitor this information? 58 59 When faults happen, how can the download be redone? This seems to work (is it the proper method?) 60 {{{ 61 receivetool -dbname rc_test -revert -fault 1 62 }}} 63 64 What if files were added to a -product (is this possible?), how would an update be made? {{{ -revert -product dist0 }}} ? 65 66
