From c6af30950148169dab8335801ad14b3e2de5b2e1 Mon Sep 17 00:00:00 2001 From: davidsarah <> Date: Sat, 26 Nov 2011 03:26:57 +0000 Subject: [PATCH] Q15: document existing FURL gotcha [Imported from Trac: page FAQ, version 57] --- FAQ.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index 5e6a5f3..7880f84 100644 --- a/FAQ.md +++ b/FAQ.md @@ -112,7 +112,9 @@ A: For immutable files this is true—the resulting capability will be the same **Q16: If I move the client node base directory to different machine and start the client there, will the node have the same node ID as on the previous machine?** -A: Yes, the node ID is stored in the `my_nodeid` file in your tahoe base directory, and it is derived from the SSL public/private keypair which is stored in the `private` subdirectory of the tahoe base directory. As long as you move both of those then the node on the new machine will have the same node ID. +A: Yes, the node ID is stored in the `my_nodeid` file in each node's base directory, and it is derived from the SSL public/private keypair which is stored in `private/node.pem` relative to the base directory. As long as you move both of those then the node on the new machine will have the same node ID. + +If you are moving these files into an existing base directory of a node that has already been run, then you will also need to delete or move aside `private/*.furl` under that directory, otherwise the node won't start. **Q17: Is it possible to run multiple introducers on the same grid?**