> For the complete documentation index, see [llms.txt](https://blog.syselement.com/home/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://blog.syselement.com/home/operating-systems/linux/tools/unifi.md).

# UniFi Network Server

***

## 🌐 Resources 🔗

> 🔗 [UniFi Installation Scripts - by Glenn R.](https://community.ui.com/questions/UniFi-Installation-Scripts-or-UniFi-Easy-Update-Script-or-UniFi-Lets-Encrypt-or-UniFi-Easy-Encrypt-/ccbc7530-dd61-40a7-82ec-22b17f027776)
>
> These scripts install/update the **UniFi Network Server** application on Ubuntu/Debian-based machines.

***

## Install UniFi Network Server

* Install an **Ubuntu Server** VM/[Proxmox LXC](https://community-scripts.github.io/ProxmoxVE/scripts?id=ubuntu) (or a supported Ubuntu/Debian-based distro) and SSH into it.
* Run the UniFi Installation Script that will **install the latest UniFi Network Server application**.

```bash
sudo sh -c '
	rm unifi-latest.sh &> /dev/null; wget https://get.glennr.nl/unifi/install/install_latest/unifi-latest.sh && bash unifi-latest.sh
'
```

* UniFi Web Page - `https://<SERVER_IP>:8443`

```bash
# Check UniFi service
sudo systemctl status unifi
sudo systemctl disable unifi
sudo systemctl enable unifi
sudo systemctl stop unifi
sudo systemctl restart unifi
```

***

## Update UniFi Network Server

```bash
sudo sh -c '
	rm unifi-update.sh &> /dev/null; wget https://get.glennr.nl/unifi/update/unifi-update.sh && bash unifi-update.sh
'
```

* Or add a `bash` alias and use it

```bash
nano $HOME/.bash_aliases
```

```bash
alias update='rm unifi-latest.sh &> /dev/null; wget https://get.glennr.nl/unifi/install/install_latest/unifi-latest.sh && bash unifi-latest.sh'

# Run the update
update
```

***


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://blog.syselement.com/home/operating-systems/linux/tools/unifi.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
