LINBIT / linstor-gui

HTML5 GUI frontend for LINSTOR
GNU General Public License v3.0
12 stars 1 forks source link

getting - Product is not enabled #3

Closed dniasoff closed 1 day ago

dniasoff commented 4 days ago

Hi Linbit

Thanks for making this open-source - really appreciated. Will help me to understand how the various components tie together.

Deployed using apt linstor-gui package.

Set up nginx

  # Define the root directory for your static files
    root /usr/share/linstor-server/ui/;

    # Configure access to static files
    location / {
        try_files $uri $uri/ =404;
    }

However getting

image

Seeing these errors in my browser

image

I assume I am missing a config file with environment variables or something?

Liang0028 commented 4 days ago

This package does not have a standalone server; it requires the LINSTOR environment and serves files through the LINSTOR server. It should be installed on the machine running the LINSTOR controller. After installation, it can be accessed via a URL like http://192.168.123.105:3370/ui/#!/, replacing 192.168.123.105 with the IP address of your LINSTOR controller.

dniasoff commented 4 days ago

Thanks for your response - I have updated controller and restarted systemd service (all installed via apt on Ubuntu jammy)

But getting

image

Liang0028 commented 1 day ago

I suggest updating to v1.8.1 and trying again.

dniasoff commented 1 day ago

Thanks, it works after updating to v1.8.1 👍