Alternative HTTPS · UniFi Network

localhost:8443

Port 8443 is commonly used for HTTPS services that do not bind to standard port 443. A self-hosted UniFi Network Server uses 8443 for local management, while UniFi Consoles and other devices commonly use 443. Confirm the product before following UniFi-specific steps.

HTTPS · TLS certificates · UniFiWindows · macOS · LinuxUpdated September 5, 2026
Expected schemeHTTPS
Port8443/TCP
UniFi self-hosted8443
UniFi ConsoleUsually 443

Start with the protocol and listener

# Inspect the HTTPS handshake and response headers
curl -v https://localhost:8443/

# Windows PowerShell
Get-NetTCPConnection -LocalPort 8443 -State Listen

# macOS or Linux
lsof -nP -iTCP:8443 -sTCP:LISTEN

Use https://, not http://. Plain HTTP sent to a TLS listener can produce resets, empty replies, or unreadable output even though the port is open.

Match the browser error

ResultWhat it suggestsNext step
Connection refusedNo listener at localhost:8443.Start the intended service and verify its configured port.
Certificate authority invalidTLS connected, but the certificate is self-signed or issued by an untrusted CA.Install the correct local CA or replace the service certificate.
Certificate name mismatchThe certificate does not cover localhost or the hostname used.Use the configured hostname or issue a certificate with the correct subject alternative name.
Another application’s loginA different service owns 8443.Identify the PID before changing configuration.
Timeout from another deviceThe service may bind to loopback or a firewall blocks the path.Use the host’s LAN IP and verify deliberate network exposure.

A certificate warning is not the same as no server. Bypassing verification can help isolate a test, but it is not a fix. Trust the correct local CA or install a certificate that matches the hostname.

UniFi: choose the correct local address

Ubiquiti’s current local-management guidance distinguishes deployment types:

  • Self-hosted UniFi Network Server: local web management uses port 8443, such as https://localhost:8443 on the server itself.
  • UniFi Console, Cloud Gateway, CloudKey, or NVR: browse to that device’s IP address; local management commonly uses 443.
  • Device adoption: TCP 8080 has a different purpose and should not be confused with the management GUI on 8443.

If the self-hosted server does not answer, check the application log and process before changing firewall rules. If a console is on another device, localhost points to your current computer and is the wrong host.

Self-hosted UniFi checks

  1. Confirm the UniFi Network application is running on the same computer.
  2. Request https://127.0.0.1:8443 locally and record the exact TLS or HTTP result.
  3. Check the listener’s process ID and the UniFi application log.
  4. If a port was customized, inspect the self-hosted server’s data/system.properties only after stopping the application and taking a backup, as Ubiquiti instructs.
  5. For access from another device, use the server’s LAN address and restrict network rules to the trusted management network.

Fix local certificate trust

A production-quality local HTTPS setup uses a certificate whose subject alternative names include the hostname you browse to and a certificate authority trusted by that client. Reissuing only for localhost will not make https://192.168.x.x:8443 valid.

A verbose curl request reveals whether failure occurs during name resolution, TCP connection, TLS negotiation, certificate validation, or the HTTP response. Avoid publishing the output without removing cookies, authorization headers, internal hostnames, and certificate details.

Do not port-forward a management console directly to the internet. Ubiquiti recommends authenticated remote-management or VPN approaches rather than casual exposure of local management ports.

Official references