Issue connecting to web interface

pewterspoon

Cadet
Joined
Dec 30, 2022
Messages
2
I recently installed Traefik via TrueCharts. In doing so, I change the TrueNAS web interface HTTP port to 81 and the HTTPS port to 444, as to not interfere with 80 and 443 being used by Traefik. After realizing I now needed to type "http://192.168.3.164:444/ui/dashboard" into the address bar instead of just "http://192.168.3.164/ui/dashboard" as I was used to doing, I decided to change the web interface ports back to 80 and 443.

The problem now is that I cannot seem to connect to the web interface at all. Typing "http://192.168.3.164/ui/dashboard" or "https://192.168.3.164:443/ui/dashboard" into the address bar indefinitely shows the "Connecting to TrueNAS..." screen.

I've tried plugging a monitor/keyboard directly into my machine to show the console setup. This even shows that the ports are set correctly:

Code:
The web user interface is at:
http://192.168.3.164:80
https://192.168.3.164:443

but trying to connect to either of these addresses causes the CLI to show a message like:

Code:
[2038531.364636] IPVS: rr: TCP 192.168.3.164:80 - no destination available
[2038608.423413] IPVS: rr: TCP 192.168.3.164:443 - no destination available

Any idea how to fix this?
 

sretalla

Powered by Neutrality
Moderator
Joined
Jan 1, 2016
Messages
9,703
Have you stopped the Traefik app?
 

pewterspoon

Cadet
Joined
Dec 30, 2022
Messages
2
Fixed the issue. I'll share my solution in case anyone else runs into the same problem.

I did try stopping Traefik via the TrueNAS CLI Shell with the following command:

Code:
app chart_release scale release_name=traefik scale_options={"replica_count": 0}

That didn't seem to work though (realizing now that if I tried rebooting after stopping the app it may have worked?).

What I ended up doing was just setting the ports back to 81 and 444 with these commands:

Code:
midclt call system.general.update '{ "ui_port": 81 }'
midclt call system.general.update '{ "ui_httpsport": 444 }'

After doing that and restarting, I can connect to the web interface from "https://192.168.3.164:444/ui/dashboard" again. Thanks all for the help.
 

rjtyler

Cadet
Joined
Jul 16, 2022
Messages
3
thanks... i tried to use Trafik with Cloudflare to create a secure tunnel which did not work as I could not get traefik from the Truestarts catalogue.
Above fixed my access issues to undo what I had done.
 
Top