2020-10-26 17:08:22 -04:00
---
2021-02-03 16:09:17 -05:00
stage: Manage
group: Access
2020-11-26 01:09:20 -05:00
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2020-10-26 17:08:22 -04:00
---
2019-03-14 23:19:04 -04:00
# Modifying global user settings
GitLab administrators can modify user settings for the entire GitLab instance.
## Disallow users creating top-level groups
2021-02-03 16:09:17 -05:00
By default, new users can create top-level groups. To disable this, modify the appropriate configuration file,
and then [reconfigure and restart GitLab ](restart_gitlab.md ).
2019-03-14 23:19:04 -04:00
For Omnibus installations, add the following to `/etc/gitlab/gitlab.rb` :
```ruby
gitlab_rails['gitlab_default_can_create_group'] = false
```
For source installations, uncomment the following line in `config/gitlab.yml` :
```yaml
# default_can_create_group: false # default: true
```
## Disallow users changing usernames
2021-02-03 16:09:17 -05:00
By default, new users can change their usernames. To disable this, modify the appropriate configuration file,
and then [reconfigure and restart GitLab ](restart_gitlab.md ).
2019-03-14 23:19:04 -04:00
For Omnibus installations, add the following to `/etc/gitlab/gitlab.rb` :
```ruby
gitlab_rails['gitlab_username_changing_enabled'] = false
```
For source installations, uncomment the following line in `config/gitlab.yml` :
```yaml
2020-02-07 10:09:52 -05:00
# username_changing_enabled: false # default: true - User can change their username/namespace
2019-03-14 23:19:04 -04:00
```