Changes between Version 5 and Version 6 of LocalGrid
- Timestamp:
- 2021-06-09T13:02:15Z (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
LocalGrid
v5 v6 7 7 }}} 8 8 9 2. Create an introducer and start it so that an introducer FURL is generated (we need this for the next step):9 2. Create an introducer and start it, and then stop it, so that an introducer FURL is generated (we need this for the next step): 10 10 11 11 {{{ 12 12 tahoe create-introducer --hostname localhost node-0 13 tahoe start node-0 && tahoe stop node-0 13 tahoe run node-0 14 ^C 14 15 }}} 15 16 … … 29 30 30 31 {{{ 31 for i in {0..9}; do tahoe start node-$i; done32 for i in {0..9}; do tahoe run node-$i & done 32 33 }}} 33 34