From 1491747ca7ad0c1ced26150b3a142db3abdb8db8 Mon Sep 17 00:00:00 2001 From: exarkun <> Date: Fri, 12 Jun 2020 15:07:14 +0000 Subject: [PATCH] add missing `--hostname`, remove one kind of bash-ism [Imported from Trac: page LocalGrid, version 5] --- LocalGrid.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LocalGrid.md b/LocalGrid.md index 6f3ca5c..8c970fa 100644 --- a/LocalGrid.md +++ b/LocalGrid.md @@ -9,20 +9,20 @@ 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): ``` -tahoe create-introducer node-0 +tahoe create-introducer --hostname localhost node-0 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/private/introducer.furl` --no-storage -p 3460 -n node-1 node-1 +tahoe create-node --hostname localhost -i $(cat node-0/private/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/private/introducer.furl` -p none -n node-$i node-$i; done +for i in {2..9}; do tahoe create-node --hostname localhost -i $(cat node-0/private/introducer.furl) -p none -n node-$i node-$i; done ``` 5. Start the grid!: