You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some installations run the controller as a dedicated user, ubnt in many cases. The script does not check for permissions and can render the controller unusable as the keystore cannot be loaded. The simple hardcoded solution was adding two variables:
UBNT_USER=ubnt
UBNT_GROUP=ubnt
And this addition before the controller is restarted.
Storing the existing permissions during the backup process may be cleaner, but since this variables must be modified before use anyway this method is sufficient.
The text was updated successfully, but these errors were encountered:
Some installations run the controller as a dedicated user, ubnt in many cases. The script does not check for permissions and can render the controller unusable as the keystore cannot be loaded. The simple hardcoded solution was adding two variables:
UBNT_USER=ubnt
UBNT_GROUP=ubnt
And this addition before the controller is restarted.
#Fix permissions
chown ${UBNT_USER}.${UBNT_GROUP} ${KEYSTORE}
Storing the existing permissions during the backup process may be cleaner, but since this variables must be modified before use anyway this method is sufficient.
The text was updated successfully, but these errors were encountered: