Installation documentation Section 3 has incorrect paths #8999

Closed
opened 2025-12-29 20:44:00 +01:00 by adam · 2 comments
Owner

Originally created by @jamesbeldock on GitHub (Dec 26, 2023).

Change Type

Correction

Area

Installation/upgrade

Proposed Changes

The existing documentation lists nested /opt/netbox/netbox/ paths when it should read /opt/netbox/netbox/netbox/ in several places. For example:

sudo adduser --system --group netbox
sudo chown --recursive netbox /opt/netbox/netbox/media/
sudo chown --recursive netbox /opt/netbox/netbox/reports/
sudo chown --recursive netbox /opt/netbox/netbox/scripts/

should actually be:

sudo adduser --system --group netbox
sudo chown --recursive netbox /opt/netbox/netbox/netbox/media/
sudo chown --recursive netbox /opt/netbox/netbox/netbox/reports/
sudo chown --recursive netbox /opt/netbox/netbox/netbox/scripts/
Originally created by @jamesbeldock on GitHub (Dec 26, 2023). ### Change Type Correction ### Area Installation/upgrade ### Proposed Changes The existing documentation lists nested `/opt/netbox/netbox/` paths when it should read `/opt/netbox/netbox/netbox/` in several places. For example: ```` sudo adduser --system --group netbox sudo chown --recursive netbox /opt/netbox/netbox/media/ sudo chown --recursive netbox /opt/netbox/netbox/reports/ sudo chown --recursive netbox /opt/netbox/netbox/scripts/ ```` should actually be: ```` sudo adduser --system --group netbox sudo chown --recursive netbox /opt/netbox/netbox/netbox/media/ sudo chown --recursive netbox /opt/netbox/netbox/netbox/reports/ sudo chown --recursive netbox /opt/netbox/netbox/netbox/scripts/ ````
adam added the type: documentation label 2025-12-29 20:44:00 +01:00
adam closed this issue 2025-12-29 20:44:01 +01:00
Author
Owner

@stavr666 commented on GitHub (Dec 26, 2023):

This (with version variable) code worked for me at least for 20 upgrades, since 3.0 to 3.6.6:

cp -pr /opt/netbox-3.6.4/netbox/media/ /opt/netbox/netbox/
cp -r /opt/netbox-3.6.4/netbox/scripts /opt/netbox/netbox/
cp -r /opt/netbox-3.6.4/netbox/reports /opt/netbox/netbox/

So, docs seems ok there.

@stavr666 commented on GitHub (Dec 26, 2023): This (with version variable) code worked for me at least for 20 upgrades, since 3.0 to 3.6.6: ```bash cp -pr /opt/netbox-3.6.4/netbox/media/ /opt/netbox/netbox/ cp -r /opt/netbox-3.6.4/netbox/scripts /opt/netbox/netbox/ cp -r /opt/netbox-3.6.4/netbox/reports /opt/netbox/netbox/ ``` So, docs seems ok there.
Author
Owner

@jeremystretch commented on GitHub (Dec 26, 2023):

The paths in the documentation are correct.

@jeremystretch commented on GitHub (Dec 26, 2023): The paths in the documentation are correct.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#8999