Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
doc:docker:add-dataset [2014/10/14 16:36] admindoc:docker:add-dataset [2014/11/17 15:35] – [Adding a dataset to data.open-ease.org] admin
Line 109: Line 109:
 After rebuilding the containers, you can start the system locally and see if you can access your data. The //start-webrob// script contains the commands for starting all necessary containers: After rebuilding the containers, you can start the system locally and see if you can access your data. The //start-webrob// script contains the commands for starting all necessary containers:
  
-  ./start-webrob+  ~/docker/scripts/start-webrob
  
 You should now be able to login to the system at http://localhost and then open http://localhost/exp/your-data. This page should load the query library you have created, and you should be able to call the queries from there. You should now be able to login to the system at http://localhost and then open http://localhost/exp/your-data. This page should load the query library you have created, and you should be able to call the queries from there.
Line 130: Line 130:
 When verything works fine on your computer, you are ready to deploy the containers to the server at data.open-ease.org.  When verything works fine on your computer, you are ready to deploy the containers to the server at data.open-ease.org. 
  
-**Please be careful with updates of the server -- only deploy well-tested code and refrain from deleting containers if not needed!** When you are doing one of your first updates, try to do it when more experienced people are still around and sufficiently before any important deadline so that there is still time to fix problems that may occur.+Please be careful with updates of the server -- only deploy well-tested code and refrain from deleting other people'containers! Especially when doing one of your first updates, try to do it when more experienced people are still around and sufficiently before any important deadline so that there is still time to fix problems that may occur.
  
 The following steps need to be performed after logging into the server: The following steps need to be performed after logging into the server:
   - Import your data into the MongoDB on the server as described above. You will need to copy your-tf.json to the server and run the mongoimport program from there.   - Import your data into the MongoDB on the server as described above. You will need to copy your-tf.json to the server and run the mongoimport program from there.
   - Rebuild the containers you have changed as you have done it on your local computer (see description above)   - Rebuild the containers you have changed as you have done it on your local computer (see description above)
-  - Update the knowrob_data container  +  - The startup script is running in a [[http://wiki.ubuntuusers.de/screen|screen session]]. You will need to resume that session, stop the currently running script, and start it again.
-  - The startup script is running in a [[http://wiki.ubuntuusers.de/screen|screen session]]+
 <code bash> <code bash>
 # connect to the server # connect to the server
Line 144: Line 143:
 screen -r screen -r
  
 +# stop the script with CRTL+C
  
 +# start the script again
 +./start-webrob
  
- +# detach the screen session using CTRL+A+D
 </code> </code>