OS with Open WebUI app
You can install an OS with a pre-installed Open WebUI app on a dedicated server.
The OS image with Open WebUI is prepared based on SelectOS — learn more about the OS in the SelectOS documentation. Parameters of available models (LLM, Large Language Model) depend on the hardware specifications of the dedicated server. The model will not run if its size exceeds the size of the video memory on the GPU. Learn more about choosing a configuration for LLM in the Machine Learning Models section of the Choose components for a dedicated server with a custom configuration.
The OS image contains:
-
Open WebUI — a web interface that allows you to manage and interact with LLMs via Ollama;
-
Ollama — a platform for running LLMs locally on a server. It runs in the
ollamaDocker container, which does not have direct internet access and only interacts with theopenweb-uiDocker container via thellm-net; -
Docker — a containerization platform for developing and running containerized applications;
-
network component settings:
-
nginx — a web server and reverse proxy. Open WebUI does not support HTTPS directly. Nginx is used as a proxy server and provides access to Open WebUI over HTTPS; for this, a self-signed TLS(SSL) certificate is generated in the system for the IP address.
For long-term use of the server, we recommend replacing the self-signed certificate with a trusted certificate for your domain and configuring nginx to work with it; -
UFW (Uncomplicated Firewall) — a simplified command-line interface for managing the Netfilter firewall on Linux-based OSs. UFW allows incoming connections only on ports
22,80and443; all other traffic is blocked.
-
Before installing an OS with an application, please review the software license agreements included in the image.
Install OS with Open WebUI
For Open WebUI to work, the dedicated server must be accessible from the internet.
You can install an OS with Open WebUI directly with an LLM or install the required LLM after installing the OS.
OS with Open WebUI with LLM installation
OS with Open WebUI without LLM
-
In the control panel, on the top menu, click Products and select Dedicated Servers.
-
In the Servers section, open the server page → Operating System tab.
-
Click Reinstall OS.
-
Optional: to securely connect to the server via the encrypted SSH protocol, select a previously uploaded and placed SSH key or add a new one. Learn more in the Create and upload an SSH key on a dedicated server.
-
Enter user data. User data lets you automate server configuration. You can specify user data only for servers without hardware HBA and RAID controllers.
To install an LLM, you need to insert a script into the user data field:
#cloud-configruncmd:- ollama_pull hf.co/<llm_name>Specify
<llm_name>— the manufacturer and model name, for example,Qwen/Qwen3-30B-A3B-GGUF. GGUF format models are available for installation; learn more about available models on the Hugging Face. -
In the Distribution field, select Open WebUI.
-
Optional: partition the disks. You can select the disk where the root partition
/will be created and the OS installed. If the server has four or more disks, you can create RAID pairs at different levels, such as RAID1 and RAID0.By default, the optimal RAID level is determined and only disks with partitions and disks in RAID are partitioned. If you leave the default partitioning, the OS will be installed on the first disk in accordance with the order of disk installation on the server — NVMe → SSD → HDD.
-
Click Install. Installation can take from 7 to 60 minutes; the duration depends on the server performance and the selected distribution. If more time has passed, create a ticket.
-
After the OS is installed, a password for connecting to the server will be generated. You can copy the password in the control panel: in the top menu, click Products → Dedicated Servers → server page → Operating System tab → in the Password field, click . The password is available for viewing for 24 hours from the moment the OS installation or configuration change begins. If you have forgotten the server password, you can reset and recover it.
Connect to the Open WebUI panel
-
Open the following page in your browser:
https://<ip_address>Specify
<ip_address>— public IP address of the server. You can copy it in the control panel: in the top menu, click Products → Dedicated Servers → server page → Operating System tab → in the IP field, click . -
Click Get started.
-
Create an administrator account:
3.1. In the Name field, enter an administrator name, for example,
Admin.3.2. In the Email field, enter an email address.
3.3. In the Password field, enter the account password.
3.4. Click Create Admin Account.
Install LLM
CLI
Open WebUI web interface
-
Connect to the server via SSH or through the KVM console.
-
Install the model:
ollama_pull hf.co/<llm_name>
Specify <llm_name> — the manufacturer and model name, for example, Qwen/Qwen3-30B-A3B-GGUF. GGUF format models are available for installation; learn more about available models on the Hugging Face.