Replies: 4 comments 3 replies
-
"Several" plugins - an understatement! :-) You didn't mention your Netbox version, but many plugins have not been updated for 4.0, or the recently-released 4.1. Nor did you show what error you get when your Netbox crashes. If it's a Netbox exception, then setting Apart from that, I suggest you enable the plugins one by one, to check they all work individually. (If any is broken, leave it disabled). Then you can try to see if there are combinations of plugins which are interfering with each other, by a binary chop. That is: enable half of them; if they're fine then enable half of the remainder, and so on. |
Beta Was this translation helpful? Give feedback.
-
I'm having the same issue. I don't have as many plugins :-) and have tried different formats for the PLUGINS = [] list. PLUGINS = [ "netbox_qrcode",
] I have tried ' single and " double quotes without success. From configuration.py: /opt/netbox$ python3 /opt/netbox/netbox/manage.py migrate During handling of the above exception, another exception occurred: The error simply shifts depending on what is commented out leading me to believe there is something in the way I have the list formatted. |
Beta Was this translation helpful? Give feedback.
-
PLUGINS = [ |
Beta Was this translation helpful? Give feedback.
-
Use three backticks (
It seems to me that either:
For example, in
but in configuration.py I have:
(note dash versus underscore) Assuming that the plugin you're talking about is https://github.com/netbox-community/netbox-floorplan-plugin then it has a similar issue, and the installation instructions are unclear: they're suggesting you do "pip install ..." without reminding you to activate the virtualenv first, but also |
Beta Was this translation helpful? Give feedback.
-
Dear, when I install several plugins and configure them in the configuration.py file:
Plugins = [
"netbox_inventory",
"ipfabric_netbox",
"netbox_bgp",
"netbox_floorplan",
"netbox_dns",
"netbox_qrcode",
"netbox_reorder_rack",
"netbox_topology_views",
"netbox_branching",
"slurpit_netbox",
"nb_risk",
"netbox_acls",
"netbox_config_diff",
"netbox_contract",
"netbox_interface_synchronization",
"netbox_otp_plugin",
"netbox_secrets",
"validity",
]
the netbox server crashes, it only allows me to enable the 1st plugin. the process i followed to install was:
python3 /opt/netbox/netbox/manage.py migrate
python3 /opt/netbox/netbox/manage.py collectstatic
sudo systemctl restart netbox netbox-rq
what steps should I follow or where should the problem be?.
Beta Was this translation helpful? Give feedback.
All reactions