From dbb853aa3f92026fdd82b12dd410d93c729462c0 Mon Sep 17 00:00:00 2001 From: lebek <> Date: Thu, 3 May 2012 15:35:05 +0000 Subject: [PATCH] [Imported from Trac: page LocalGrid, version 2] --- LocalGrid.md | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/LocalGrid.md b/LocalGrid.md index 52400a7..a460486 100644 --- a/LocalGrid.md +++ b/LocalGrid.md @@ -2,7 +2,9 @@ 1. Create a directory for the grid: -` mkdir tahoe-grid && cd tahoe-grid ` +``` +mkdir tahoe-grid && cd tahoe-grid +``` 2. Create an introducer and start it so that an introducer FURL is generated (we need this for the next step): @@ -13,16 +15,24 @@ tahoe start node-0 && tahoe stop node-0 3. Create a client node (serve WUI on a non-default port so as not to compete with your working tahoe installation): -` tahoe create-node -i `cat node-0/introducer.furl` --no-storage -p 3460 -n node-1 node-1 ` +``` +tahoe create-node -i `cat node-0/introducer.furl` --no-storage -p 3460 -n node-1 node-1 +``` 4. Create some storage nodes: -` for i in {2..9}; do tahoe create-node -i `cat node-0/introducer.furl` -p none -n node-$i node-$i; done ` +``` +for i in {2..9}; do tahoe create-node -i `cat node-0/introducer.furl` -p none -n node-$i node-$i; done +``` 5. Start the grid!: -` for i in {0..9}; do tahoe start node-$i; done ` +``` +for i in {0..9}; do tahoe start node-$i; done +``` 6. Check it worked: -` tahoe webopen -d node-1 ` \ No newline at end of file +``` +tahoe webopen -d node-1 +``` \ No newline at end of file