'tahoe run' doesn't work for an introducer node #937
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#937
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I tried following the instructions (running.html) for creating an introducer, and it didn't work. With some help from secorp on IRC, we determined that I should use "tahoe start dirname" rather than "tahoe run". There's may be an underlying bug that should be fixed, but the install instructions should be fixed irregardless because people use the current install instructions on old versions.
This problem occurred with both 1.5 and 1.6
Attachment irclog.txt (5327 bytes) added
Attachment 937_running.diff (783 bytes) added
Update of install instructions warning against using tahoe run for an introducer.
install instructions broken for creating an introducer nodeto 'tahoe run' doesn't work for an introducer node, but is documented to work in running.htmlrunning.html was corrected in changeset:8f3246430bc0a17b.
'tahoe run' doesn't work for an introducer node, but is documented to work in running.htmlto 'tahoe run' doesn't work for an introducer nodeAttachment 937.dpatch.txt (55196 bytes) added
937.dpatch.txt was applied in changeset:49912c106e3dc3de.
changeset:a7c474a09893b9aa makes the error message more explicit, e.g.:
Oh, to debug why
tahoe run
doesn't work for an introducer (or key-generator or stats-gatherer), you'll now have to disable the check at source:src/allmydata/scripts/startstop_node.py@4641#L206.On #tahoe-lafs:
This seems to be a workaround, assuming Twisted is installed system-wide (replace TAHOE_SOURCE_DIR and X as necessary):
Attachment run-introducer.diff (3030 bytes) added
enable 'tahoe run' for introducer nodes
that patch should enable "tahoe run" for both client and introducer
nodes. The specific issue was that "tahoe run" was hard-wired to load
client nodes only; it lacked the code to look at the .tac file (to find
out what kind of node was being started) and then load the appropriate
code.
I think we decided to switch away from .tac files a while ago (#1159), but only
"tahoe run" had made any steps in that direction (by hard-coding
client.Client
instead of loading the .tac file). This moves us alittle bit closer. To avoid relying too much on .tac files, at least
upon their contents, both
tahoe start
andtahoe run
mustdecide what nodetype is being started (by looking at the name of the
.tac file, or perhaps from other clues): client, introducer,
key-generator, stats-gatherer, etc. Then it must load in the appropriate
class (
client.Client
,introducer.server.IntroducerNode
,etc), instantiate it, then start the instance.
This patch includes a test for the "emit a nice error message when asked
to 'tahoe run' a nodetype that we don't recognize", but it doesn't
include a test for normal success of 'tahoe run', since 'run' launches
the reactor, and that's not straightforward to do from within a unit
test. (note that we didn't previously have coverage of 'tahoe run'
either). I've run manual tests and things look ok.
We might consider changing 'tahoe run' to use the "
twistd --nodaemon
"approach, which would make it look a lot closer to
tahoe start
.However, that would make it more dependent upon .tac files, not less. In
the longer run, I think we should try the approach I came up with in my
[https://github.com/warner/toolbed/blob/master/toolbed/scripts/startstop.py "toolbed" project],
where I create a (in-memory) twistd plugin that creates the desired
Node, then set up the twistd arguments that will invoke this plugin,
then give control to
twistd.runApp
in a child process.Will review.
The other tac types are
tahoe-key-generator.tac
andtahoe-stats-gatherer.tac
. Shall we support those while we're about it?Replying to warner:
That's #1121.
... or use the approach I suggested in ticket:1159#comment:-1 of using a
.tac
in the source tree. That solves the main version-skew problems with.tac
files, and is possibly less disruptive to the existing code.(note, if we land my patch from #1159, then this one becomes moot)
(also, #1159 would handle key-generator and stats-gatherer too)
Will be fixed by #1159.