## For instruction on writing tutorials ## http://www.ros.org/wiki/WritingTutorials #################################### ##FILL ME IN #################################### ## for a custom note with links: ## note = ## for the canned note of "This tutorial assumes that you have completed the previous tutorials:" just add the links ## note.0= ## descriptive title for the tutorial ## title = Running the warehouse ## multi-line description to be displayed in search ## description = How to start up and configure the Mongo DB server ## the next tutorial description (optional) ## next = ## links to next tutorial (optional) ## next.0.link= ## next.1.link= ## what level user is this tutorial for ## level= BeginnerCategory ## keywords = #################################### <<IncludeCSTemplate(TutorialCSHeaderTemplate)>> <<TableOfContents(4)>> The `mongodb` system dependency of warehouse_ros includes the `mongod` executable, which runs a MongoDB server. For convenience, we provide a wrapper that starts up this server and sets some configuration parameters from the ROS parameter server. == Using the Command Line == To start the server from the command line: {{{ $ rosrun warehouse_ros_mongo mongo_wrapper_ros.py }}} == Using a Launch File == Alternatively, here's an example of starting the server from a launch file and setting some parameters (the full list of parameters is in the [[mongodb|package documentation]]). {{{ <launch> <node name="mongo" type="mongo_wrapper_ros.py" pkg="warehouse_ros_mongo"> <param name="overwrite" value="true"/> <param name="database_location" value="/path/to/my/db"/> </node> <param name="warehouse_port" value="27019"/> </launch> }}} ## AUTOGENERATED DO NOT DELETE ## TutorialCategory ## FILL IN THE STACK TUTORIAL CATEGORY HERE