-
I'm trying to update nextPYP on my standalone workstation, but I get this error when I try to start up the service. I've also tried reinstalling from scratch. I'm not sure where it's reading the problematic path, it doesn't seem to matter if I change the binds or scratch directory. (I also don't know why it's problematic, /mnt/data0 is just a ext4 filesystem on a large SSD, and I haven't changed anything since nextPYP was working last).
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 25 replies
-
Guessing from the information in that error, that |
Beta Was this translation helpful? Give feedback.
Wow, ok. Found the cause of the issue. It's complicated.
Turns out a bug in my code was causing the server startup routines to be called during the CLI processing of the config file, which is waaay too early. That's why it looked like the server process was starting, because it was actually trying to do that, but that's not the right time to do it. I've already fixed the bug in the code, but you'll have to wait for the next release to get the fix.
In the meantime, you can work around the issue by putting the local and shared folders somewhere under your home directory. Through sheer dumb luck, that takes a code path that avoids the bug. If you need more space than your home folder has, yo…