Install Command Fails, Usually Segmentation fault #6813
-
NetBox versionv2.11.9 Python version3.7 Steps to ReproduceHyper-V 2012r2 Host. ESXi Host, install is flawless. https://netbox.readthedocs.io/en/stable/installation/ Option B during NetBox installation. The T Expected BehaviorI expected the command to complete successfully. Observed Behavior
But usually just a Segmentation fault,
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Per the note displayed when opening an issue, please don't open bug reports for help with installation issues. |
Beta Was this translation helpful? Give feedback.
-
I think you have your answer there. A segmentation fault means typically:
You didn't say if your Hyper-V and ESXi installations were on the same physical hardware, or different hardware. Even if it were the same hardware, they could be mapping different pages, so the fault may be more visible in one case or the other. It's possible it's a bug in HyperV, but then it would be unlikely to be something you can trigger but nobody else has noticed. It's possible this is a known bug and your 2012r2 host is missing some patches. Apart from that, it seems to me this is most likely a hardware fault. To prove this one way or the other: install the exact same version of 2012r2 and Hyper-V on a completely different server, and install Debian 10 guest and Netbox in the same way as before. Another way you can prove that this is nothing to do with Netbox is to run some other resource-intensive application, such as compiling a kernel. If it crashes in random places then you're seeing the behaviour described in the sig 11 FAQ. |
Beta Was this translation helpful? Give feedback.
I think you have your answer there.
A segmentation fault means typically:
You didn't say if your Hyper-V and ESXi installations were on the same physical hardware, or different hardware. Even if it were the same hardware, they could be mapping different pages, so the fault may be more visible in one case or the other.
It's possible it's a bug in H…