Changes between Version 81 and Version 82 of Old/hNodes/cNodeVer3/dAssembly/e4NodesSetup
- Timestamp:
- Jul 16, 2013, 7:16:50 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Old/hNodes/cNodeVer3/dAssembly/e4NodesSetup
v81 v82 234 234 Create database "inventory" in mysql 235 235 Define the testbed 236 Modify the addTestbed.rb file to point to the correct inventory database 237 {{{ 238 @host = "http://localhost:5054/inventory/" 239 }}} 240 241 Modify property files testbed_attributes.yaml according to tour testbed properties 242 Add testbed to inventory database using 243 244 {{{ 245 246 ruby addTestbed 247 }}} 236 248 237 {{{238 wget -qO- 'http://console:5054/inventory/resource_add?name=geni.net&type=testbed'239 }}}240 249 241 250 Modify the addNode.rb file to point to the correct inventory database 242 251 243 252 {{{ 244 @host = "http://console:5054/inventory/" 245 }}} 246 253 @host = "http://localhost:5054/inventory/" 254 }}} 255 256 Create node_attributes.yaml file with node attributes. 247 257 Add all the nodes to the inventory database using 248 258 249 259 {{{ 250 260 251 ruby addNode.rb <node_fqdn> 261 ruby addNode.rb <node_fqdn> <node_attributes.yaml> 252 262 }}} 253 263