From 1b1f24043f449306f8f8c9f2fca2a5dc171d5572 Mon Sep 17 00:00:00 2001 From: wh1te909 Date: Wed, 27 Mar 2024 23:16:14 +0000 Subject: [PATCH] add note about changing mesh port --- docs/mesh_integration.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/mesh_integration.md b/docs/mesh_integration.md index 830b6c54..4be6d05c 100644 --- a/docs/mesh_integration.md +++ b/docs/mesh_integration.md @@ -41,6 +41,21 @@ If you've enabled the Mesh "Ask Consent + Bar" display option that shows across ```bash /rmm/api/env/bin/python /rmm/api/tacticalrmm/manage.py get_mesh_login_url ``` +## Modifying the Internal Mesh Port Configuration + +By default, Tactical RMM configures the Mesh service to listen on the internal port 4430. Should there be a need to modify this default port within the Nginx or Mesh configuration, it is imperative to update Tactical RMM with the new port information. To accomplish this, the following entry must be added to the file `/rmm/api/tacticalrmm/tacticalrmm/local_settings.py`: + +```python +MESH_PORT = +``` + +Replace `` with the actual port number you have configured. For example, if the new port number is 1234, the entry should be as follows: + +```python +MESH_PORT = 1234 +``` + +Then, restart your entire server for changes to take effect. ## Running your own existing or separate MeshCentral server?