From 78d9fd41aa269c784d21029f9e0470a5809b6def Mon Sep 17 00:00:00 2001 From: root Date: Tue, 10 Mar 2026 16:06:41 +0000 Subject: [PATCH] docs: Update Next Steps with manual server creation option - Added OPTION B for manual Server creation in Core UI - Added troubleshooting tips (firewall, passkey, logs) - Clarifies that auto-discovery may not always work - Users can pre-create Server with matching name for instant connection --- komodo-periphery-install.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/komodo-periphery-install.sh b/komodo-periphery-install.sh index 520b2fe..1d7bc4a 100755 --- a/komodo-periphery-install.sh +++ b/komodo-periphery-install.sh @@ -268,11 +268,27 @@ show_status() { echo "" echo "Next Steps:" + echo " The Periphery will attempt to connect to the Core automatically." + echo "" + echo " OPTION A - Automatic Connection:" echo " 1. Go to your Komodo Core UI" echo " 2. Navigate to 'Peripheries' or 'Servers'" echo " 3. This Periphery should appear automatically" echo " 4. If not, check the logs for connection errors" echo "" + echo " OPTION B - Manual Server Creation (if auto-discovery fails):" + echo " 1. Go to your Komodo Core UI" + echo " 2. Navigate to 'Servers' and click 'Add Server'" + echo " 3. Enter the Server Name: $SERVER_NAME" + echo " 4. Save the Server configuration" + echo " 5. The Periphery should connect immediately" + echo "" + echo " Troubleshooting:" + echo " - Ensure the Core Domain is reachable from this server" + echo " - Verify the Passkey matches the Core configuration" + echo " - Check firewall rules (Port 8120 must be open)" + echo " - View logs: docker logs komodo-periphery -f" + echo "" } # Cleanup on error