6.3.3. Viewing District Information


This section describes how to view information about a district on your system. Note that the resulting output is in JSON format.
View all available districts with the oo-admin-ctl-district command, or use the -n option with the district's name to view a single district.

Example 6.5. Viewing All Districts

Copy to Clipboard Toggle word wrap
# oo-admin-ctl-district

{ ...
"uuid"=>"7521a7801686477f8409e74f67b693f4",
...}

Example 6.6. Viewing a Single District

Copy to Clipboard Toggle word wrap
# oo-admin-ctl-district -n small_district
District Representation on the Broker

During district creation, the broker creates a new document in its MongoDB database. Run the following command to view these documents inside of the openshift_broker database, replacing the login credentials from the /etc/openshift/broker.conf file, if needed:

Copy to Clipboard Toggle word wrap
# mongo -u openshift -p password openshift_broker
From the mongo shell, you can perform commands against the broker database. Run the following command to list all of the available collections in the openshift_broker database:
Copy to Clipboard Toggle word wrap
> db.getCollectionNames()
Observe the collections returned, noting the districts collection:
Copy to Clipboard Toggle word wrap
  [ "applications", "auth_user", "cloud_users", "districts", "domains", "locks", "system.indexes", "system.users", "usage", "usage_records" ]
Query the districts collection to verify the creation of your districts. District information is output in JSON format:
Copy to Clipboard Toggle word wrap
> db.districts.find()
Exit the mongo shell using the exit command:
Copy to Clipboard Toggle word wrap
> exit
Back to top
Red Hat logoGithubredditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust. Explore our recent updates.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

Theme

© 2025 Red Hat, Inc.