Created
March 1, 2021 07:20
-
-
Save mkormendy/3be5be0d4b87d5767d06dd2725f95f9c to your computer and use it in GitHub Desktop.
UniFi Network Controller Setup for MacOS with Homebrew
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
brew tap homebrew/cask-drivers | |
brew install --cask homebrew/cask-versions/adoptopenjdk8 | |
brew install --cask ubiquiti-unifi-controller |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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