Changes between Version 1 and Version 2 of LocalGrid
- Timestamp:
- 2012-05-03T15:35:05Z (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
LocalGrid
v1 v2 3 3 1. Create a directory for the grid: 4 4 5 {{{ mkdir tahoe-grid && cd tahoe-grid }}} 5 {{{ 6 mkdir tahoe-grid && cd tahoe-grid 7 }}} 6 8 7 9 2. Create an introducer and start it so that an introducer FURL is generated (we need this for the next step): … … 14 16 3. Create a client node (serve WUI on a non-default port so as not to compete with your working tahoe installation): 15 17 16 {{{ tahoe create-node -i `cat node-0/introducer.furl` --no-storage -p 3460 -n node-1 node-1 }}} 18 {{{ 19 tahoe create-node -i `cat node-0/introducer.furl` --no-storage -p 3460 -n node-1 node-1 20 }}} 17 21 18 22 4. Create some storage nodes: 19 23 20 {{{ for i in {2..9}; do tahoe create-node -i `cat node-0/introducer.furl` -p none -n node-$i node-$i; done }}} 24 {{{ 25 for i in {2..9}; do tahoe create-node -i `cat node-0/introducer.furl` -p none -n node-$i node-$i; done 26 }}} 21 27 22 28 5. Start the grid!: 23 29 24 {{{ for i in {0..9}; do tahoe start node-$i; done }}} 30 {{{ 31 for i in {0..9}; do tahoe start node-$i; done 32 }}} 25 33 26 34 6. Check it worked: 27 35 28 {{{ tahoe webopen -d node-1 }}} 36 {{{ 37 tahoe webopen -d node-1 38 }}}