Este conteúdo não está disponível no idioma selecionado.
Chapter 6. Domain Management
Identity Service (keystone) domains are additional namespaces you can create in keystone. You would use keystone domains to partition users, groups, and projects. These separate domains can also be configured to authenticate users in different LDAP or Active Directory environments. For more information, see Integrate with Identity Service.
Identity Service includes a built-in domain called Default
. It is suggested you reserve this domain only for service accounts, and create a separate domain for user accounts.
6.1. View a List of Domains Copiar o linkLink copiado para a área de transferência!
You can view a list of domains using openstack domain list
. For example:
If this command is not available, check you have enabled keystone v3 for your command line session.
6.2. Create a New Domain Copiar o linkLink copiado para a área de transferência!
You can create a new domain using openstack domain create
. For example:
6.3. View the Details of a Domain Copiar o linkLink copiado para a área de transferência!
You can view the details of a domain using openstack domain show
. For example:
6.4. Disable a Domain Copiar o linkLink copiado para a área de transferência!
You can disable a domain using
--disable
. For example:openstack domain set TestDomain --disable
$ openstack domain set TestDomain --disable
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Confirm the domain has been disabled:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow You can then re-enable the domain, if required:
openstack domain set TestDomain --enable
$ openstack domain set TestDomain --enable
Copy to Clipboard Copied! Toggle word wrap Toggle overflow