When making changes to the config file (gitlab.rb), run the reconfiguration command to apply the changes
gitlab-ctl reconfigure
To watch all GitLab logs
gitlab-ctl tail
To restart all GL components or specific components
gitlab-ctl restart # All components
gitlab-ctl restart nginx # Only the NGINX component
Unlock a user account
user = User.find_by_username('ross')
user.unlock_access!
Show an account's attributes
user = User.find_by_username('ross')
pp user.attributes