I’m currently setting up the Ziti Admin Console (ZAC) following the official documentation, but I encountered an issue where the ZAC does not appear in the browser as expected. Instead, I receive a "404 Page Not Found" error.
I expect you didn't download the zac distributable, put it into the wrong place, or referenced it incorrectly in your controller config file.
It looks like you have a Linux desktop. There's a Linux package available that will provide the Ziti console's static files. You may then configure your Ziti controller to serve the console from the installed path like this.
Install the console:
curl -sS https://get.openziti.io/install.bash | sudo bash -s "openziti-console"
Then, configure the Ziti controller to serve the console from the installed location: /opt/openziti/share/console
.
I configured the Ziti controller to serve the console from the installed path /opt/openziti/share/console
. After making these changes, I was able to access the Ziti Admin Console without any issues. Thank you.
1 Like