Quickstart Guide ================ After :doc:`Installing Exosphere`, you can quickly get started by following this guide and adapting the simple scenario it presents to your needs. **Create the Configuration File** .. code-block:: shell $ exosphere config paths Create ``config.yaml`` in the `Config` directory shown here. .. tip:: You can also use `config.toml` or `config.json` if you prefer those formats. See the :doc:`configuration ` page for more details. **Basic configuration** Add your :ref:`hosts ` and :ref:`options ` to the configuration file. .. code-block:: yaml # Username for SSH connections, optional # If not specified, the current user will be used. # The entire "options" section can be omitted if you # don't need to set any global options. options: default_username: admin # Hosts to manage hosts: - name: dbhost1 ip: dbhost1.example.com description: Database Server - name: web1 ip: web1.example.com description: Frontend Web Server - name: fileserver ip: 192.168.0.28 # ip is fine too port: 2222 # Optional port if not 22 username: alice # This one has a special login # description is optional .. admonition:: Note This assumes your private keys are loaded in your SSH agent. See :doc:`connections` for more details. **Run Exosphere** .. code-block:: shell $ exosphere At the exosphere prompt, you can run commands to manage your hosts. You can also explore the interactive help system in the CLI by running: .. code-block:: exosphere exosphere> help **Discover Hosts** .. code-block:: exosphere exosphere> inventory discover This will detect the platform and package manager for each host. It only needs to be done once, or if something changes on the host. If you encounter issues at this step, see the :doc:`connections` and :doc:`supportedos` pages for more details. **Refresh Hosts** .. code-block:: exosphere exosphere> inventory refresh This will refresh the state of each host and collect information about available updates. **View Status and Host Details** .. code-block:: exosphere exosphere> inventory status exosphere> host show hostname There you go! You are now set up with a *basic* Exosphere configuration and can aggregate your updates all in one place. Next Steps ---------- For more fundamental details, you could have a look at :doc:`concepts`. To go further, you can: * Explore the various commands in the :doc:`cli` * Explore the :doc:`reporting` features to generate reports and json data Or start the full :doc:`ui` for a more interactive experience: .. code-block:: shell $ exosphere ui .. tip:: For more advanced configuration options, authentication details, and troubleshooting, see the full :doc:`configuration ` and :doc:`connections ` documentation. The :doc:`faq` section may also be helpful for common questions and issues.