From aa975798a1630b246d71aae5622e4bb35ccc8e99 Mon Sep 17 00:00:00 2001 From: Stephen Chin Date: Sat, 2 May 2026 12:09:56 -0700 Subject: [PATCH] fix(hermesagent): correct SSH access instructions The hermes service account has no password or SSH keys and cannot be used to log in. Access is via root (standard PVE Helper Scripts pattern). Also add -fN flags to the dashboard tunnel command so it runs in the background without opening a shell session. --- ct/hermesagent.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/hermesagent.sh b/ct/hermesagent.sh index ef76b5e9..03045797 100644 --- a/ct/hermesagent.sh +++ b/ct/hermesagent.sh @@ -57,12 +57,12 @@ description msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Connect via SSH and configure your LLM provider:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}ssh hermes@${IP}${CL}" +echo -e "${TAB}${GATEWAY}${BGN}ssh root@${IP}${CL}" echo -e "${TAB}${BGN}hermes setup${CL}" echo -e "${INFO}${YW} API Server (OpenAI-compatible):${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8642/v1${CL}" echo -e "${INFO}${YW} API key stored at:${CL}" echo -e "${TAB}${BGN}/home/hermes/.hermes/.env${CL}" echo -e "${INFO}${YW} Web Dashboard (via SSH tunnel):${CL}" -echo -e "${TAB}${BGN}ssh -L 9119:localhost:9119 hermes@${IP}${CL}" +echo -e "${TAB}${BGN}ssh -fNL 9119:localhost:9119 root@${IP}${CL}" echo -e "${TAB}${BGN}Then open: http://localhost:9119${CL}"