Chapter 1. Launching Red Hat Offline Knowledge Portal
Launch Red Hat Offline Knowledge Portal with the minimal default configuration.
Prerequisites
- An active Red Hat Satellite subscription
- Your Customer Portal, Red Hat Developer, or Registry Service Account credentials
- Internet access for the duration of the download
- Podman
Procedure
- To get your access key, navigate to the Red Hat Offline Knowledge Portal Access Key Generator in your browser, log in, and select the button.
To download Red Hat Offline Knowledge Portal from your terminal using Podman:
If needed, log in to
registry.redhat.io
using your Customer Portal, Red Hat Developer, or Registry Service Account credentials:Copy to Clipboard Copied! Toggle word wrap Toggle overflow podman login registry.redhat.io
$ podman login registry.redhat.io username: <username> Password: <password> Login Succeeded!
Pull the image:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow podman pull registry.redhat.io/offline-knowledge-portal/rhokp-rhel9:latest
$ podman pull registry.redhat.io/offline-knowledge-portal/rhokp-rhel9:latest
To launch Red Hat Offline Knowledge Portal with
https
using the self-signed certificate Podman generates, enter the minimalpodman run
command with your access key:Copy to Clipboard Copied! Toggle word wrap Toggle overflow podman run --rm -p 8080:8080 -p 8443:8443 \ --env "ACCESS_KEY=<your_personal_access_key>" \ -d registry.redhat.io/offline-knowledge-portal/rhokp-rhel9:latest
$ podman run --rm -p 8080:8080 -p 8443:8443 \ --env "ACCESS_KEY=<your_personal_access_key>" \ -d registry.redhat.io/offline-knowledge-portal/rhokp-rhel9:latest
Validation
- After waiting about 30 seconds for the container to load, navigate to http://localhost:8080 or https://localhost:8443 (and accept the self-signed cert).