Skip to content

Instantly share code, notes, and snippets.

@mkormendy
Created March 1, 2021 07:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mkormendy/3be5be0d4b87d5767d06dd2725f95f9c to your computer and use it in GitHub Desktop.
Save mkormendy/3be5be0d4b87d5767d06dd2725f95f9c to your computer and use it in GitHub Desktop.
UniFi Network Controller Setup for MacOS with Homebrew
#!/bin/sh
brew tap homebrew/cask-drivers
brew install --cask homebrew/cask-versions/adoptopenjdk8
brew install --cask ubiquiti-unifi-controller
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>WorkingDirectory</key>
<string>/Applications/UniFi.app/Contents/Resources</string>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>ui.unifi.controller</string>
<key>ProcessType</key>
<string>Background</string>
<key>ProgramArguments</key>
<array>
<string>/usr/libexec/java_home</string>
<string>-v</string>
<string>1.8</string>
<string>--exec</string>
<string>java</string>
<string>-jar</string>
<string>lib/ace.jar</string>
<string>start</string>
</array>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment