Changes between Version 17 and Version 18 of Tutorials/g0WmLTE/Tutorial2


Ignore:
Timestamp:
Jul 4, 2012, 2:56:39 PM (12 years ago)
Author:
jeffrabi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/g0WmLTE/Tutorial2

    v17 v18  
    130130omf-5.3 exec <experimentname>.rb
    131131}}}
     132
     133----
     134
     135== Retrieving Results ==
     136
     137Data is collected during experimentation and pushed to a server using an experiment ID indicated during the initiation and conclusion of each experiment. This ID is important, as it is used to recover experiment results and even view them in real-time. (Server names vary with test beds. This server name is specific to ORBIT.)
     138
     139To recover experiment data to the local machine, and using the experiment ID:
     140
     141{{{
     142wget "http://oml:5053/result/dumpDatabase?expID=<your_experiment_ID>" -O myDatabase
     143}}}
     144
     145 * If the experiment ID contains non-alphanumeric ASCII characters, it is necessary to escape each of them using "%" followed by the ASCII code.
     146
     147You're almost done. In order to get SQLite to recognize the database, it first must be told that the information '''is''' a database.
     148
     149{{{
     150sqlite3 -init myDatabase myDatabase.sq3
     151}}}