From bff8879189ddba7515fddaafe938563b17103e2b Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Mon, 17 Mar 2025 13:13:49 +0100 Subject: [PATCH] InfluxDB: Add Ports as Info / Script-End (#3141) * InfluxDB: Add Ports as Info / Script-End * Update influxdb.sh --- ct/influxdb.sh | 2 +- json/influxdb.json | 13 +++++++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/ct/influxdb.sh b/ct/influxdb.sh index f4bfbbecb..1ef738aca 100644 --- a/ct/influxdb.sh +++ b/ct/influxdb.sh @@ -41,4 +41,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8086${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP} and Port 8888 for v1 or Port 8086 (v2)${CL}" diff --git a/json/influxdb.json b/json/influxdb.json index 0c38be749..7fac00d9c 100644 --- a/json/influxdb.json +++ b/json/influxdb.json @@ -30,5 +30,14 @@ "username": null, "password": null }, - "notes": [] -} \ No newline at end of file + "notes": [ + { + "text": "Port for V1: 8888", + "type": "info" + }, + { + "text": "Port for V2: 8086", + "type": "info" + } + ] +}