Red Hat CloudForms 4.6-Beta

Size: px
Start display at page:

Download "Red Hat CloudForms 4.6-Beta"

Transcription

1 Red Hat CloudForms 4.6-Beta Installing Red Hat CloudForms on OpenShift Container Platform How to install and configure Red Hat CloudForms on an OpenShift Container Platform environment Last Updated:

2

3 Red Hat CloudForms 4.6-Beta Installing Red Hat CloudForms on OpenShift Container Platform How to install and configure Red Hat CloudForms on an OpenShift Container Platform environment Red Hat CloudForms Documentation Team

4 Legal Notice Copyright 2018 Red Hat, Inc. The text of and illustrations in this document are licensed by Red Hat under a Creative Commons Attribution Share Alike 3.0 Unported license ("CC-BY-SA"). An explanation of CC-BY-SA is available at In accordance with CC-BY-SA, if you distribute this document or an adaptation of it, you must provide the URL for the original version. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, JBoss, OpenShift, Fedora, the Infinity logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the United States and other countries. Java is a registered trademark of Oracle and/or its affiliates. XFS is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries. MySQL is a registered trademark of MySQL AB in the United States, the European Union and other countries. Node.js is an official trademark of Joyent. Red Hat Software Collections is not formally related to or endorsed by the official Joyent Node.js open source or commercial project. The OpenStack Word Mark and OpenStack logo are either registered trademarks/service marks or trademarks/service marks of the OpenStack Foundation, in the United States and other countries and are used with the OpenStack Foundation's permission. We are not affiliated with, endorsed or sponsored by the OpenStack Foundation, or the OpenStack community. All other trademarks are the property of their respective owners. Abstract This guide provides instructions on how to install and configure Red Hat CloudForms on an OpenShift Container Platform environment. If you have a suggestion for improving this guide or have found an error, please submit a Bugzilla report at against Red Hat CloudForms Management Engine for the Documentation component. Please provide specific details, such as the section number, guide name, and CloudForms version so we can easily locate the content.

5 Table of Contents Table of Contents. CHAPTER INSTALLING RED.... HAT..... CLOUDFORMS PREREQUISITES Cluster Sizing PREPARING TO DEPLOY CLOUDFORMS DEPLOYING THE CLOUDFORMS APPLIANCE Deploying the CloudForms Appliance Using an External Database VERIFYING THE CONFIGURATION SCALING CLOUDFORMS APPLIANCES OBTAINING POD ACCESS AND ROUTES 9. CHAPTER CONFIGURING RED.... HAT..... CLOUDFORMS ACCESSING THE APPLIANCE CONSOLE CONFIGURING A DATABASE Configuring an Internal Database Configuring an External Database CONFIGURING A WORKER APPLIANCE 14. CHAPTER TROUBLESHOOTING DEPLOYMENT UNINSTALLING RED HAT CLOUDFORMS FROM A PROJECT 17. APPENDIX A.... APPENDIX A.1. APPLIANCE CONSOLE COMMAND-LINE INTERFACE (CLI) 18 1

6 Red Hat CloudForms 4.6-Beta Installing Red Hat CloudForms on OpenShift Container Platform 2

7 CHAPTER 1. INSTALLING RED HAT CLOUDFORMS CHAPTER 1. INSTALLING RED HAT CLOUDFORMS Red Hat CloudForms can be installed on OpenShift Container Platform in a few quick steps. This procedure uses a template to deploy a multi-pod Red Hat CloudForms appliance with the database stored in a persistent volume on OpenShift Container Platform. It provides a step-by-step setup, including cluster administrative tasks as well as basic user information and commands. The ultimate goal of the deployment is to be able to deconstruct the Red Hat CloudForms appliance into several containers running on a pod or a series of pods PREREQUISITES To successfully deploy a Red Hat CloudForms appliance on OpenShift Container Platform, you need a functioning OpenShift Container Platform 3.5 or newer install with the following configured: NFS or other compatible volume provider A cluster-admin user A basic user IMPORTANT OpenShift Container Platform 3.5 is required for this installation. Red Hat has not tested this procedure with earlier versions of OpenShift Container Platform. The CloudForms deployment uses three files to create the appliance: cfme-template.yaml, which is the CloudForms template used for the deployment, and cfme-pv-example.yaml and cfme-pv-appexample.yaml, two pod volume files. These files create the OpenShift pods comprising the appliance, and are available from the Red Hat Container Catalog. To download the files to your system, navigate to each of the following pages and click the Get this image tab. Select OpenShift from the Choose your platform: list, then follow the instructions on that page to pull the image: CloudForms appliance image Memcached image PostgreSQL image Cluster Sizing To avoid deployment failures due to resource starvation, Red Hat recommends the following minimum cluster size for a test environment: 1 master node with at least 8 vcpus and 12GB of RAM 2 nodes with at least 4 vcpus and 8GB of RAM 25GB of storage for CloudForms physical volume use 3

8 Red Hat CloudForms 4.6-Beta Installing Red Hat CloudForms on OpenShift Container Platform These recommendations assume CloudForms is the only application running on this cluster. Alternatively, you can provision an infrastructure node to run registry, metrics, router, and logging pods. Each CloudForms application pod will consume at least 3GB of RAM on initial deployment (without providers added). RAM consumption increases depending on the appliance use. For example, after adding providers, expect higher resource consumption PREPARING TO DEPLOY CLOUDFORMS To prepare for deploying the CloudForms appliance to OpenShift Container Platform, create a project, configure security contexts, and create pod volumes. 1. As a basic user, log in to OpenShift: $ oc login -u <user> -p <password> 2. Create a project with your desired parameters. The <project_name> is mandatory, but <description> and <display_name> are optional: $ oc new-project <project_name> \ --description="<description>" \ --display-name="<display_name>" 3. Add the cfme-anyuid service account to the anyuid security context constraint (SCC). Because the CloudForms image requires the root user, the cfme-anyuid service account for your namespace (project) must be added to the anyuid SCC before pods using the service account can run as root. a. As the admin user, add the cfme-anyuid service account by running: $ oc adm policy add-scc-to-user anyuid system:serviceaccount: <your-namespace>:cfme-anyuid b. Verify that the cfme-anyuid service account is now included in the anyuid SCC: $ oc describe scc anyuid grep Users Users: system:serviceaccount:<your-namespace>:cfme-anyuid 4. Add your default service account to the privileged security context. The default service account for your namespace (project) must be added to the privileged security context constraints (SCCs) before they can run privileged pods. a. As the admin user, add the default service account by running: $ oc adm policy add-scc-to-user privileged system:serviceaccount: <your-namespace>:default b. Verify that your default service account is now included in the privileged security context constraints (SCCs): $ oc describe scc privileged grep Users Users: system:serviceaccount:openshift- infra:build-controller,system:serviceaccount:management- 4

9 CHAPTER 1. INSTALLING RED HAT CLOUDFORMS infra:management-admin,system:serviceaccount:managementinfra:inspectoradmin,system:serviceaccount:default:router,system:serviceaccount: default:registry,system:serviceaccount:<your-namespace>:default 5. Prepare persistent storage for the deployment. (Skip this step if you have already configured persistent storage.) A basic CloudForms deployment needs at least two persistent volumes (PVs) to store CloudForms data. As the admin user, create two persistent volumes: one to host the CloudForms PostgreSQL database, and one to host the application data. Example NFS-backed volume templates are provided by cfme-pv-db-example.yaml and cfme-pv-server-example.yaml, available from GitHub. NOTE For NFS-backed volumes, ensure your NFS server firewall is configured to allow traffic on port 2049 (TCP) from the OpenShift cluster. Red Hat recommends setting permissions for the pv-app (privileged pod volume) as 777, uid/gid 0 (owned by root). For more information on configuring persistent storage in OpenShift Container Platform, see the OpenShift Container Platform Installation and Configuration guide. a. Configure your NFS server host details within these files, and edit any other settings needed to match your environment. b. Run the following commands to create the two persistent volumes: $ oc create -f cfme-pv-db-example.yaml $ oc create -f cfme-pv-server-example.yaml c. Verify the pod volumes were created successfully: $ oc get pv NAME CAPACITY ACCESSMODES RECLAIMPOLICY STATUS CLAIM REASON AGE cfme-pv01 15Gi RWO Recycle Available 30s cfme-pv02 5Gi RWO Recycle Available 19s NOTE Red Hat recommends validating NFS share connectivity from an OpenShift node before attempting a deployment. 6. Increase the maximum number of imported images on ImageStream. By default, OpenShift Container Platform can import five tags per image stream, but the CloudForms repositories contain more than five images for deployments. You can modify this setting on the master node at /etc/origin/master/masterconfig.yaml so OpenShift can import additional images. 5

10 Red Hat CloudForms 4.6-Beta Installing Red Hat CloudForms on OpenShift Container Platform a. Add the following at the end of the /etc/origin/master/master-config.yaml file:... imagepolicyconfig: maximagesbulkimportedperrepository: 100 b. Restart the master service: $ systemctl restart atomic-openshift-master 1.3. DEPLOYING THE CLOUDFORMS APPLIANCE To deploy the appliance on OpenShift Container Platform, create the Red Hat CloudForms template and verify it is available in your project. 1. As a basic user, create the Red Hat CloudForms template: $ oc create -f templates/cfme-template.yaml template "cloudforms" created 2. Verify the template is available with your project: $ oc get templates NAME DESCRIPTION PARAMETERS OBJECTS cloudforms CloudForms appliance with persistent storage 18 (1 blank) (Optional) Customize the template s deployment parameters. Use the following command to see the available parameters and descriptions: $ oc process --parameters -n <your-project> cloudforms To customize the deployment configuration parameters, run: $ oc edit dc/<deployconfig_name> 4. To deploy Red Hat CloudForms from template using default settings, run: $ oc new-app --template=cloudforms Alternatively, to deploy Red Hat CloudForms from a template using customized settings, add the -p option and the desired parameters to the command. For example: $ oc new-app --template=cloudforms -p DATABASE_VOLUME_CAPACITY=2Gi,MEMORY_POSTGRESQL_LIMIT=4Gi,APPLICATION _DOMAIN=hostname 6

11 CHAPTER 1. INSTALLING RED HAT CLOUDFORMS IMPORTANT The APPLICATION_DOMAIN parameter specifies the hostname used to reach the CloudForms application, which eventually constructs the route to the CloudForms pod. If you do not specify the APPLICATION_DOMAIN parameter, the CloudForms application will not be accessible after the deployment; however, this can be fixed by changing the route. For more information on OpenShift template parameters, see the OpenShift Container Platform Developer Guide Deploying the CloudForms Appliance Using an External Database Before attempting to deploy CloudForms using an external database deployment, ensure the following conditions are satisfied: Your OpenShift cluster can access the external PostgreSQL server The CloudForms user, password, and role have been created on the external PostgreSQL server The intended CloudForms database is created, and ownership has been assigned to the CloudForms user To deploy the appliance: 1. Import the CloudForms external database template: $ oc create -f templates/cfme-template-ext-db.yaml 2. Launch the deployment with the following command. The database server IP address is required, and the other settings must match your remote PostgreSQL server. $ oc new-app --template=cloudforms-ext-db -p DATABASE_IP=<server_ip> -p DATABASE_USER=<user> -p DATABASE_PASSWORD=<password> -p DATABASE_NAME=<database_name> 1.4. VERIFYING THE CONFIGURATION Verify the deployment was successful by running the following commands as a basic user under the Red Hat CloudForms project: NOTE The first deployment can take several minutes to complete while OpenShift downloads the necessary images. 1. Confirm the Red Hat CloudForms pod is bound to the correct security context constraints. a. List and obtain the name of the cfme-app pod: $ oc get pod NAME READY STATUS RESTARTS AGE cloudforms-1-fzwzm 1/1 Running 0 4m memcached-1-6iuxu 1/1 Running 0 4m postgresql-1-2kxc3 1/1 Running 0 4m 7

12 Red Hat CloudForms 4.6-Beta Installing Red Hat CloudForms on OpenShift Container Platform b. Export the configuration of the pod: $ oc export pod <cfme_pod_name> c. Examine the output to verify that openshift.io/scc has the value anyuid:... metadata: annotations: openshift.io/scc: anyuid Verify the persistent volumes are attached to the postgresql and cfme-app pods: $ oc volume pods --all pods/postgresql-1-437jg pvc/cfme-pgdb-claim (allocated 2GiB) as cfme-pgdb-volume mounted at /var/lib/pgsql/data secret/default-token-2se06 as default-token-2se06 mounted at /var/run/secrets/kubernetes.io/serviceaccount pods/cfme-1-s3bnp pvc/cfme (allocated 2GiB) as cfme-app-volume mounted at /persistent secret/default-token-9q4ge as default-token-9q4ge mounted at /var/run/secrets/kubernetes.io/serviceaccount 3. Check the readiness of the CloudForms pod: NOTE Allow approximately five minutes once pods are in running state for Red Hat CloudForms to start responding on HTTPS. $ oc describe pods <cfme_pod_name>... Conditions: Type Status Ready True Volumes: After you have successfully validated your CloudForms deployment, disable automatic image change triggers to prevent unintended upgrades. By default, on initial deployments the automatic image change trigger is enabled. This could potentially start an unintended upgrade on a deployment if a newer image is found in the ImageStream. Disable the automatic image change triggers for CloudForms deployment configurations (DCs) on each project with the following commands: $ oc set triggers dc --manual -l app=cloudforms deploymentconfig "memcached" updated deploymentconfig "postgresql" updated 8

13 CHAPTER 1. INSTALLING RED HAT CLOUDFORMS $ oc set triggers dc --from-config --auto -l app=cloudforms deploymentconfig "memcached" updated deploymentconfig "postgresql" updated NOTE The configuration change trigger is kept enabled; to have full control of your deployments, you can alternatively turn it off. See the OpenShift Container Platform Developer Guide for more information on deployment triggers SCALING CLOUDFORMS APPLIANCES StatefulSets in OpenShift allow scaling of CloudForms appliances. See the OpenShift Container Platform 3.5 Release Notes for information on StatefulSets. IMPORTANT Each new replica (server) consumes a physical volume. Before scaling, ensure you have enough physical volumes available to scale. The following example shows scaling using StatefulSets: Example: Scaling to two replicas $ oc scale statefulset cloudforms --replicas=2 statefulset "cloudforms" scaled $ oc get pods NAME READY STATUS RESTARTS AGE cloudforms-0 1/1 Running 0 34m cloudforms-1 1/1 Running 0 5m memcached-1-mzeer 1/1 Running 0 1h postgresql-1-dufgp 1/1 Running 0 1h The newly created replicas will join the existing CloudForms region. For a StatefulSet with N replicas, when pods are being deployed, they are created sequentially, in order from {0..N-1} OBTAINING POD ACCESS AND ROUTES To open a shell on the CloudForms pod, run: $ oc rsh <pod_name> bash -l To obtain host information from the route: $ oc get routes NAME HOST/PORT PATH SERVICE TERMINATION LABELS cloudforms cfme.apps.e2e.example.com cloudforms:443-tcp passthrough app=cloudforms 9

14 Red Hat CloudForms 4.6-Beta Installing Red Hat CloudForms on OpenShift Container Platform A route should have been deployed via template for HTTPS access on the CloudForms pod. Examine the output and point your web browser to the reported URL/host (in this example, cfme.apps.e2e.example.com). 10

15 CHAPTER 2. CONFIGURING RED HAT CLOUDFORMS CHAPTER 2. CONFIGURING RED HAT CLOUDFORMS After installing CloudForms and running it for the first time, you must perform some basic configuration. To configure CloudForms, you must at a minimum: 1. Add a disk to the infrastructure hosting your appliance. 2. Configure the database. Configure the CloudForms appliance using the internal appliance console ACCESSING THE APPLIANCE CONSOLE 1. Start the appliance and open a terminal console. 2. Enter the appliance_console command. The Red Hat CloudForms appliance summary screen displays. 3. Press Enter to manually configure settings. 4. Press the number for the item you want to change, and press Enter. The options for your selection are displayed. 5. Follow the prompts to make the changes. 6. Press Enter to accept a setting where applicable. NOTE The CloudForms appliance console automatically logs out after five minutes of inactivity CONFIGURING A DATABASE CloudForms uses a database to store information about the environment. Before using CloudForms, configure the database options for it; CloudForms provides the following two options for database configuration: Install an internal PostgreSQL database to the appliance Configure the appliance to use an external PostgreSQL database Configuring an Internal Database IMPORTANT Before installing an internal database, add a disk to the infrastructure hosting your appliance. See the documentation specific to your infrastructure for instructions for adding a disk. As a storage disk usually cannot be added while a virtual machine is running, Red Hat recommends adding the disk before starting the appliance. Red Hat CloudForms only supports installing of an internal VMDB on blank disks; installation will fail if the disks are not blank. 1. Start the appliance and open a terminal console. 11

16 Red Hat CloudForms 4.6-Beta Installing Red Hat CloudForms on OpenShift Container Platform 2. Enter the appliance_console command. The Red Hat CloudForms appliance summary screen displays. 3. Press Enter to manually configure settings. 4. Select 5) Configure Database from the menu. 5. You are prompted to create or fetch an encryption key. If this is the first Red Hat CloudForms appliance, choose 1) Create key. If this is not the first Red Hat CloudForms appliance, choose 2) Fetch key from remote machine to fetch the key from the first appliance. For worker and multi-region setups, use this option to copy key from another appliance. NOTE All CloudForms appliances in a multi-region deployment must use the same key. 6. Choose 1) Create Internal Database for the database location. 7. Choose a disk for the database. This can be either a disk you attached previously, or a partition on the current disk. IMPORTANT Red Hat recommends using a separate disk for the database. If there is an unpartitioned disk attached to the virtual machine, the dialog will show options similar to the following: 1) /dev/vdb: ) Don't partition the disk Enter 1 to choose /dev/vdb for the database location. This option creates a logical volume using this device and mounts the volume to the appliance in a location appropriate for storing the database. The default location is /var/opt/rh/rhpostgresql95/lib/pgsql, which can be found in the environment variable $APPLIANCE_PG_MOUNT_POINT. Enter 2 to continue without partitioning the disk. A second prompt will confirm this choice. Selecting this option results in using the root filesystem for the data directory (not advised in most cases). 8. Enter Y or N for Should this appliance run as a standalone database server? Select Y to configure the appliance as a database-only appliance. As a result, the appliance is configured as a basic PostgreSQL server, without a user interface. Select N to configure the appliance with the full administrative user interface. 9. When prompted, enter a unique number to create a new region. 12

17 CHAPTER 2. CONFIGURING RED HAT CLOUDFORMS IMPORTANT Creating a new region destroys any existing data on the chosen database. 10. Create and confirm a password for the database. Red Hat CloudForms then configures the internal database Configuring an External Database Based on your setup, you will choose to configure the appliance to use an external PostgreSQL database. For example, we can only have one database in a single region. However, a region can be segmented into multiple zones, such as database zone, user interface zone, and reporting zone, where each zone provides a specific function. The appliances in these zones must be configured to use an external database. The postgresql.conf file used with Red Hat CloudForms databases requires specific settings for correct operation. For example, it must correctly reclaim table space, control session timeouts, and format the PostgreSQL server log for improved system support. Due to these requirements, Red Hat recommends that external Red Hat CloudForms databases use a postgresql.conf file based on the standard file used by the Red Hat CloudForms appliance. Ensure you configure the settings in the postgresql.conf to suit your system. For example, customize the shared_buffers setting according to the amount of real storage available in the external system hosting the PostgreSQL instance. In addition, depending on the aggregate number of appliances expected to connect to the PostgreSQL instance, it may be necessary to alter the max_connections setting. NOTE Red Hat CloudForms 4.x requires PostgreSQL version 9.4. Because the postgresql.conf file controls the operation of all databases managed by a single instance of PostgreSQL, do not mix Red Hat CloudForms databases with other types of databases in a single PostgreSQL instance. 1. Start the appliance and open a terminal console. 2. Enter the appliance_console command. The Red Hat CloudForms appliance summary screen displays. 3. Press Enter to manually configure settings. 4. Select 5) Configure Database from the menu. 5. You are prompted to create or fetch a security key. If this is the first Red Hat CloudForms appliance, choose 1) Create key. If this is not the first Red Hat CloudForms appliance, choose 2) Fetch key from remote machine to fetch the key from the first appliance. 13

18 Red Hat CloudForms 4.6-Beta Installing Red Hat CloudForms on OpenShift Container Platform NOTE All CloudForms appliances in a multi-region deployment must use the same key. 6. Choose 2) Create Region in External Database for the database location. 7. Enter the database hostname or IP address when prompted. 8. Enter the database name or leave blank for the default (vmdb_production). 9. Enter the database username or leave blank for the default (root). 10. Enter the chosen database user s password. 11. Confirm the configuration if prompted. Red Hat CloudForms will then configure the external database CONFIGURING A WORKER APPLIANCE You can use multiple appliances to facilitate horizontal scaling, as well as for dividing up work by roles. Accordingly, configure an appliance to handle work for one or many roles, with workers within the appliance carrying out the duties for which they are configured. You can configure a worker appliance through the terminal. The following steps demonstrate how to join a worker appliance to an appliance that already has a region configured with a database. 1. Start the appliance and open a terminal console. 2. Enter the appliance_console command. The Red Hat CloudForms appliance summary screen displays. 3. Press Enter to manually configure settings. 4. Select 5) Configure Database from the menu. 5. You are prompted to create or fetch a security key. Since this is not the first Red Hat CloudForms appliance, choose 2) Fetch key from remote machine. For worker and multiregion setups, use this option to copy key from another appliance. NOTE All CloudForms appliances in a multi-region deployment must use the same key. 6. Choose 2) Create Region in External Database for the database location. 7. Enter the database hostname or IP address when prompted. 8. Enter the database name or leave blank for the default (vmdb_production). 9. Enter the database username or leave blank for the default (root). 10. Enter the chosen database user s password. 11. Confirm the configuration if prompted. 14

19 CHAPTER 2. CONFIGURING RED HAT CLOUDFORMS Once Red Hat CloudForms is installed, you can log in and perform administration tasks. Log in to Red Hat CloudForms for the first time after installing by: 1. Navigate to the URL for the login screen. ( on the virtual machine instance) 2. Enter the default credentials (Username: admin Password: smartvm) for the initial login. 3. Click Login. 15

20 Red Hat CloudForms 4.6-Beta Installing Red Hat CloudForms on OpenShift Container Platform CHAPTER 3. TROUBLESHOOTING DEPLOYMENT Under normal circumstances, the deployment process takes approximately 10 minutes. If the deployment is unsuccessful, examining deployment events and pod logs can help identify any issues. 1. As a basic user, first retry the failed deployment: $ oc get pods NAME READY STATUS RESTARTS AGE cloudforms-1-deploy 0/1 Error 0 25m memcached-1-yasfq 1/1 Running 0 24m postgresql-1-wfv59 1/1 Running 0 24m $ oc deploy cloudforms --retry Retried #1 Use 'oc logs -f dc/cloudforms' to track its progress. 2. Allow a few seconds for the failed pod to get re-scheduled, then check events and logs: $ oc describe pods <pod-name>... Events: FirstSeen LastSeen Count From SubobjectPath Type Reason Message m 15m 1 {kubelet ocp-eval-node-2.e2e.example.com} spec.containers{cloudforms} Warning Unhealthy Readiness probe failed: Get dial tcp :80: getsockopt: connection refused Liveness and readiness probe failures, like in the output above, indicate the pod is taking longer than expected to come online. In this case, check the pod logs. 3. As the cfme-app container is systemd based, use oc rsh instead of oc logs to obtain journal dumps: $ oc rsh <pod-name> journalctl -x 4. Transferring all logs from the cfme-app pod to a directory on the host for further examination can be useful for troubleshooting. Transfer the logs with the oc rsync command: $ oc rsync <pod-name>:/persistent/container-deploy/log \ /tmp/fail-logs/ receiving incremental file list log/ log/appliance_initialize_ log log/restore_pv_data_ log log/sync_pv_data_ log sent 72 bytes received 1881 bytes bytes/sec total size is 1585 speedup is

21 CHAPTER 3. TROUBLESHOOTING DEPLOYMENT 3.1. UNINSTALLING RED HAT CLOUDFORMS FROM A PROJECT If no longer needed, you can uninstall the Red Hat CloudForms pod from your project. Note the following commands do not remove SCC permissions, or the project itself. IMPORTANT Use this procedure if only Red Hat CloudForms exists in the project. 1. Inside the project, run the following as a basic user: $ oc delete all --all 2. Wait approximately 30 seconds for the command to process, then run: $ oc delete pvc --all 17

22 Red Hat CloudForms 4.6-Beta Installing Red Hat CloudForms on OpenShift Container Platform APPENDIX A. APPENDIX A.1. APPLIANCE CONSOLE COMMAND-LINE INTERFACE (CLI) Currently, the appliance_console_cli feature is a subset of the full functionality of the appliance_console itself, and covers functions most likely to be scripted using the command-line interface (CLI). 1. After starting the Red Hat CloudForms appliance, log in with a user name of root and the default password of smartvm. This displays the Bash prompt for the root user. 2. Enter the appliance_console_cli or appliance_console_cli --help command to see a list of options available with the command, or simply enter appliance_console_cli -- option <argument> directly to use a specific option. Table A.1. Database Configuration Options Option Description --region (-r) region number (create a new region in the database - requires database credentials passed) --internal (-i) internal database (create a database on the current appliance) --dbdisk database disk device path (for configuring an internal database) --hostname (-h) database hostname --port database port (defaults to 5432) --username (-U) database username (defaults to root) --password (-p) database password --dbname (-d) database name (defaults to vmdb_production) Table A.2. v2_key Options Option Description --key (-k) create a new v2_key --fetch-key (-K) fetch the v2_key from the given host --force-key (-f) create or fetch the key even if one exists 18

23 APPENDIX A. APPENDIX Option Description --sshlogin ssh username for fetching the v2_key (defaults to root) --sshpassword ssh password for fetching the v2_key Table A.3. IPA Server Options Option Description --host (-H) set the appliance hostname to the given name --ipaserver (-e) IPA server FQDN --ipaprincipal (-n) IPA server principal (default: admin) --ipapassword (-w) IPA server password --ipadomain (-o) IPA server domain (optional). Will be based on the appliance domain name if not specified. --iparealm (-l) IPA server realm (optional). Will be based on the domain name of the ipaserver if not specified. --uninstall-ipa (-u) uninstall IPA client NOTE In order to configure authentication through an IPA server, in addition to using Configure External Authentication (httpd) in the appliance_console, external authentication can be optionally configured via the appliance_console_cli (command-line interface). Specifying --host will update the hostname of the appliance. If this step was already performed via the appliance_console and the necessary updates made to /etc/hosts if DNS is not properly configured, the --host option can be omitted. Table A.4. Certificate Options Option Description --ca (-c) CA name used for certmonger (default: ipa) --postgres-client-cert (-g) install certs for postgres client --postgres-server-cert install certs for postgres server 19

24 Red Hat CloudForms 4.6-Beta Installing Red Hat CloudForms on OpenShift Container Platform Option Description --http-cert install certs for http server (to create certs/httpd* values for a unique key) --extauth-opts (-x) external authentication options NOTE The certificate options augment the functionality of the certmonger tool and enable creating a certificate signing request (CSR), and specifying certmonger the directories to store the keys. Table A.5. Other Options Option Description --logdisk (-l) log disk path --tmpdisk initialize the given device for temp storage (volume mounted at /var/www/miq_tmp) --verbose (-v) print more debugging info Example Usage $ ssh root@appliance.test.company.com To create a new database locally on the server using /dev/sdb: # appliance_console_cli --internal --dbdisk /dev/sdb --region 0 --password smartvm To copy the v2_key from a host some.example.com to local machine: # appliance_console_cli --fetch-key some.example.com --sshlogin root -- sshpassword smartvm You could combine the two to join a region where db.example.com is the appliance hosting the database: # appliance_console_cli --fetch-key db.example.com --sshlogin root -- sshpassword smartvm --hostname db.example.com --password mydatabasepassword To configure external authentication: 20

25 APPENDIX A. APPENDIX # appliance_console_cli --host appliance.test.company.com --ipaserver ipaserver.test.company.com --ipadomain test.company.com --iparealm TEST.COMPANY.COM --ipaprincipal admin --ipapassword smartvm1 To uninstall external authentication: # appliance_console_cli --uninstall-ipa 21

Red Hat CloudForms 4.5

Red Hat CloudForms 4.5 Red Hat CloudForms 4.5 Installing Red Hat CloudForms on OpenShift Container Platform How to install and configure Red Hat CloudForms on an OpenShift Container Platform environment Last Updated: 2018-06-01

More information

Red Hat CloudForms 4.6

Red Hat CloudForms 4.6 Red Hat CloudForms 4.6 Installing Red Hat CloudForms on Red Hat Virtualization How to install and configure Red Hat CloudForms on a Red Hat Virtualization environment Last Updated: 2018-08-07 Red Hat

More information

Red Hat CloudForms 4.6-Beta

Red Hat CloudForms 4.6-Beta Red Hat CloudForms 4.6-Beta Installing Red Hat CloudForms on VMware vsphere How to install and configure Red Hat CloudForms on a VMware vsphere environment Last Updated: 2018-01-25 Red Hat CloudForms

More information

Red Hat CloudForms 4.2

Red Hat CloudForms 4.2 Red Hat CloudForms 4.2 Installing Red Hat CloudForms on Amazon Elastic Compute Cloud (Amazon EC2) How to install and configure Red Hat CloudForms on an Amazon EC2 Last Updated: 2017-12-18 Red Hat CloudForms

More information

Red Hat CloudForms 4.6

Red Hat CloudForms 4.6 Red Hat CloudForms 4.6 Installing Red Hat CloudForms on Amazon Elastic Compute Cloud (Amazon EC2) How to install and configure Red Hat CloudForms on Amazon Elastic Compute Cloud (Amazon EC2) Last Updated:

More information

Red Hat CloudForms 4.5

Red Hat CloudForms 4.5 Red Hat CloudForms 4.5 Installing Red Hat CloudForms on Red Hat OpenStack Platform How to install and configure Red Hat CloudForms on a Red Hat OpenStack Platform environment Last Updated: 2018-10-10 Red

More information

Red Hat CloudForms 4.6

Red Hat CloudForms 4.6 Red Hat CloudForms 4.6 Installing Red Hat CloudForms on Microsoft SCVMM How to install and configure Red Hat CloudForms on a Microsoft SCVMM environment Last Updated: 2018-08-13 Red Hat CloudForms 4.6

More information

Red Hat CloudForms 4.2

Red Hat CloudForms 4.2 Red Hat CloudForms 4.2 Installing Red Hat CloudForms on VMware vsphere How to install and configure Red Hat CloudForms on a VMware vsphere environment Last Updated: 2017-12-18 Red Hat CloudForms 4.2 Installing

More information

Red Hat CloudForms 4.2

Red Hat CloudForms 4.2 Red Hat CloudForms 4.2 Installing Red Hat CloudForms on Red Hat Virtualization How to install and configure Red Hat CloudForms on a Red Hat Virtualization environment Last Updated: 2017-12-18 Red Hat

More information

Red Hat CloudForms 4.0

Red Hat CloudForms 4.0 Red Hat CloudForms 4.0 Installing CloudForms on VMware vsphere How to Install and Configure the CloudForms Management Engine Appliance on a VMware vsphere environment Last Updated: 2017-12-08 Red Hat

More information

Red Hat CloudForms 4.0

Red Hat CloudForms 4.0 Red Hat CloudForms 4.0 Introduction to the Self Service Portal An overview of the CloudForms Management Engine (CFME) Self Service user interface Last Updated: 2017-12-08 Red Hat CloudForms 4.0 Introduction

More information

Red Hat CloudForms 4.5

Red Hat CloudForms 4.5 Red Hat CloudForms 4.5 Integration with OpenShift Container Platform Adding Red Hat OpenShift Container Platform (with Metrics Enabled) as a Container Provider Last Updated: 2018-04-27 Red Hat CloudForms

More information

Red Hat CloudForms 4.5 Integration with AWS CloudFormation and OpenStack Heat

Red Hat CloudForms 4.5 Integration with AWS CloudFormation and OpenStack Heat Red Hat CloudForms 4.5 Integration with AWS CloudFormation and OpenStack Heat How to install and configure Amazon CloudFormation and OpenStack Heat in a Red Hat CloudForms environment Red Hat CloudForms

More information

Red Hat CloudForms 4.6

Red Hat CloudForms 4.6 Red Hat CloudForms 4.6 Integration with OpenShift Container Platform Adding Red Hat OpenShift Container Platform (with Metrics Enabled) as a Container Provider Last Updated: 2018-05-18 Red Hat CloudForms

More information

Red Hat OpenShift Application Runtimes 1

Red Hat OpenShift Application Runtimes 1 Red Hat OpenShift Application Runtimes 1 Install and Configure the Fabric8 Launcher Tool For Use with Red Hat OpenShift Application Runtimes Last Updated: 2018-03-09 Red Hat OpenShift Application Runtimes

More information

Red Hat JBoss Middleware for OpenShift 3

Red Hat JBoss Middleware for OpenShift 3 Red Hat JBoss Middleware for OpenShift 3 OpenShift Primer Get started with OpenShift Last Updated: 2018-01-09 Red Hat JBoss Middleware for OpenShift 3 OpenShift Primer Get started with OpenShift Legal

More information

Red Hat CloudForms 4.6

Red Hat CloudForms 4.6 Red Hat CloudForms 4.6 Scanning Container Images in CloudForms with OpenSCAP Configuring OpenSCAP in CloudForms for Scanning Container Images Last Updated: 2018-05-24 Red Hat CloudForms 4.6 Scanning Container

More information

Red Hat OpenShift Application Runtimes 0.1

Red Hat OpenShift Application Runtimes 0.1 Red Hat OpenShift Application Runtimes 0.1 Install and Configure the developers.redhat.com/launch Application on a Single-node OpenShift Cluster For Use with Red Hat OpenShift Application Runtimes Last

More information

Red Hat Enterprise Linux Atomic Host 7 Getting Started with Cockpit

Red Hat Enterprise Linux Atomic Host 7 Getting Started with Cockpit Red Hat Enterprise Linux Atomic Host 7 Getting Started with Cockpit Getting Started with Cockpit Red Hat Atomic Host Documentation Team Red Hat Enterprise Linux Atomic Host 7 Getting Started with Cockpit

More information

Red Hat Enterprise Linux 7 Getting Started with Cockpit

Red Hat Enterprise Linux 7 Getting Started with Cockpit Red Hat Enterprise Linux 7 Getting Started with Cockpit Getting Started with Cockpit Red Hat Enterprise Linux Documentation Team Red Hat Enterprise Linux 7 Getting Started with Cockpit Getting Started

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 NetApp Back End Guide for the Shared File System Service Deploying Multiple NetApp Back Ends for the Shared File System Service in a Red Hat OpenStack Platform Overcloud Last

More information

Red Hat CloudForms 4.6

Red Hat CloudForms 4.6 Red Hat CloudForms 4.6 Configuring the Lenovo Physical Infrastructure Provider Adding and configuring the Lenovo physical infrastructure provider in Red Hat CloudForms Last Updated: 2018-03-01 Red Hat

More information

Red Hat CloudForms 4.1

Red Hat CloudForms 4.1 Red Hat CloudForms 4.1 Integration with ServiceNow Integrating ServiceNow CMDB with Red Hat CloudForms Last Updated: 2017-10-31 Red Hat CloudForms 4.1 Integration with ServiceNow Integrating ServiceNow

More information

Red Hat CloudForms 4.0

Red Hat CloudForms 4.0 Red Hat CloudForms 4.0 Integration with ServiceNow Managing CloudForms ServiceNow CMDB integration Last Updated: 2017-10-31 Red Hat CloudForms 4.0 Integration with ServiceNow Managing CloudForms ServiceNow

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 NetApp Back End Guide for the Shared File System Service Deploying Multiple NetApp Back Ends for the Shared File System Service in a Red Hat OpenStack Platform Overcloud Last

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Google Cloud Backup Guide Configuring OpenStack Block Storage Backups to Use Google Cloud Storage Last Updated: 2018-06-22 Red Hat OpenStack Platform 13 Google Cloud Backup

More information

Red Hat OpenStack Platform 9 Introduction to the OpenStack Dashboard

Red Hat OpenStack Platform 9 Introduction to the OpenStack Dashboard Red Hat OpenStack Platform 9 Introduction to the OpenStack Dashboard An overview of the OpenStack dashboard graphical user interface OpenStack Team Red Hat OpenStack Platform 9 Introduction to the OpenStack

More information

Red Hat Quay 2.9 Deploy Red Hat Quay - Basic

Red Hat Quay 2.9 Deploy Red Hat Quay - Basic Red Hat Quay 2.9 Deploy Red Hat Quay - Basic Deploy Red Hat Quay Last Updated: 2018-09-14 Red Hat Quay 2.9 Deploy Red Hat Quay - Basic Deploy Red Hat Quay Legal Notice Copyright 2018 Red Hat, Inc. The

More information

Red Hat Development Suite 1.1 Installation Guide

Red Hat Development Suite 1.1 Installation Guide Red Hat Development Suite 1.1 Installation Guide Installing Red Hat Development Suite Misha Husnain Ali Supriya Bharadwaj Red Hat Developer Group Documentation Team Red Hat Development Suite 1.1 Installation

More information

Red Hat Virtualization 4.1 Product Guide

Red Hat Virtualization 4.1 Product Guide Red Hat Virtualization 4.1 Product Guide Introduction to Red Hat Virtualization 4.1 Red Hat Virtualization Documentation TeamRed Hat Red Hat Virtualization 4.1 Product Guide Introduction to Red Hat Virtualization

More information

Red Hat JBoss Enterprise Application Platform 7.0

Red Hat JBoss Enterprise Application Platform 7.0 Red Hat JBoss Enterprise Application Platform 7.0 Patching and Upgrading Guide For Use with Red Hat JBoss Enterprise Application Platform 7.0 Last Updated: 2018-01-18 Red Hat JBoss Enterprise Application

More information

Red Hat JBoss Enterprise Application Platform 7.2

Red Hat JBoss Enterprise Application Platform 7.2 Red Hat JBoss Enterprise Application Platform 7.2 Patching and Upgrading Guide For Use with Red Hat JBoss Enterprise Application Platform 7.2 Last Updated: 2018-11-29 Red Hat JBoss Enterprise Application

More information

Red Hat Enterprise Linux OpenStack Platform 7 Fujitsu ETERNUS Back End Guide

Red Hat Enterprise Linux OpenStack Platform 7 Fujitsu ETERNUS Back End Guide Red Hat Enterprise Linux OpenStack Platform 7 Fujitsu ETERNUS Back End Guide A Guide to Using a Fujitsu ETERNUS Back End in a RHEL OpenStack Platform 7 Environment OpenStack Team Red Hat Enterprise Linux

More information

Red Hat Virtualization 4.2

Red Hat Virtualization 4.2 Red Hat Virtualization 4.2 Introduction to the VM Portal Accessing and Using the VM Portal Last Updated: 2018-07-30 Red Hat Virtualization 4.2 Introduction to the VM Portal Accessing and Using the VM

More information

Red Hat Virtualization 4.2

Red Hat Virtualization 4.2 Red Hat Virtualization 4.2 Metrics Store Installation Guide Installing Metrics Store for Red Hat Virtualization Last Updated: 2018-08-20 Red Hat Virtualization 4.2 Metrics Store Installation Guide Installing

More information

OpenShift Dedicated 3 Release Notes

OpenShift Dedicated 3 Release Notes OpenShift Dedicated 3 Release Notes Last Updated: 2018-05-17 OpenShift Dedicated 3 Release Notes Legal Notice Copyright 2018 Red Hat, Inc. The text of and illustrations in this document are licensed by

More information

Red Hat JBoss BRMS 6.0

Red Hat JBoss BRMS 6.0 Red Hat JBoss BRMS 6.0 IBM WebSphere Installation and Configuration Guide For Red Hat JBoss BRMS Last Updated: 2017-11-17 Red Hat JBoss BRMS 6.0 IBM WebSphere Installation and Configuration Guide For

More information

3.6. How to Use the Reports and Data Warehouse Capabilities of Red Hat Enterprise Virtualization. Last Updated:

3.6. How to Use the Reports and Data Warehouse Capabilities of Red Hat Enterprise Virtualization. Last Updated: Red Hat Enterprise Virtualization 3.6 Reports and Data Warehouse Guide How to Use the Reports and Data Warehouse Capabilities of Red Hat Enterprise Virtualization Last Updated: 2017-09-27 Red Hat Enterprise

More information

Red Hat CloudForms 4.6

Red Hat CloudForms 4.6 Red Hat CloudForms 4.6 Policies and Profiles Guide Policy-based enforcement, compliance, events, and policy profiles for Red Hat CloudForms Last Updated: 2018-03-02 Red Hat CloudForms 4.6 Policies and

More information

Red Hat CloudForms 4.5 Introduction to the Self Service User Interface

Red Hat CloudForms 4.5 Introduction to the Self Service User Interface Red Hat CloudForms 4.5 Introduction to the Self Service User Interface An overview of the Red Hat CloudForms Self Service user interface Red Hat CloudForms Documentation Team Red Hat CloudForms 4.5 Introduction

More information

Red Hat Application Migration Toolkit 4.2

Red Hat Application Migration Toolkit 4.2 Red Hat Application Migration Toolkit 4.2 Eclipse Plugin Guide Identify and resolve migration issues by running the Red Hat Application Migration Toolkit against your applications in Eclipse. Last Updated:

More information

Red Hat Process Automation Manager 7.0 Executing a business process in Business Central

Red Hat Process Automation Manager 7.0 Executing a business process in Business Central Red Hat Process Automation Manager 7.0 Executing a business process in Business Central Last Updated: 2018-10-01 Red Hat Process Automation Manager 7.0 Executing a business process in Business Central

More information

Red Hat JBoss Fuse 6.3

Red Hat JBoss Fuse 6.3 Red Hat JBoss Fuse 6.3 Installation on JBoss EAP Install JBoss Fuse 6.3 on JBoss EAP 6.4 Last Updated: 2017-11-09 Red Hat JBoss Fuse 6.3 Installation on JBoss EAP Install JBoss Fuse 6.3 on JBoss EAP 6.4

More information

Red Hat OpenStack Platform 12

Red Hat OpenStack Platform 12 Red Hat OpenStack Platform 12 Custom Block Storage Back End Deployment Guide A Guide to Deploying a Custom Block Storage Back End in a Red Hat OpenStack Platform Overcloud Last Updated: 2017-12-19 Red

More information

Red Hat JBoss A-MQ 6.0

Red Hat JBoss A-MQ 6.0 Red Hat JBoss A-MQ 6.0 Broker Administration Tutorials Simple recipes for managing a message broker Last Updated: 2017-10-13 Red Hat JBoss A-MQ 6.0 Broker Administration Tutorials Simple recipes for managing

More information

Red Hat Development Suite 2.1

Red Hat Development Suite 2.1 Red Hat Development Suite 2.1 Installation Guide Installing Red Hat Development Suite Last Updated: 2017-12-06 Red Hat Development Suite 2.1 Installation Guide Installing Red Hat Development Suite Petra

More information

Red Hat 3scale 2.3 Accounts

Red Hat 3scale 2.3 Accounts Red Hat 3scale 2.3 Accounts How to manage admin and member rights and invite teammates to use the admin portal. Last Updated: 2019-03-07 Red Hat 3scale 2.3 Accounts How to manage admin and member rights

More information

Red Hat Application Migration Toolkit 4.0

Red Hat Application Migration Toolkit 4.0 Red Hat Application Migration Toolkit 4.0 Eclipse Plugin Guide Simplify Migration of Java Applications Last Updated: 2018-04-04 Red Hat Application Migration Toolkit 4.0 Eclipse Plugin Guide Simplify

More information

Red Hat Ceph Storage 3

Red Hat Ceph Storage 3 Red Hat Ceph Storage 3 Monitoring Ceph with Datadog Guide on Monitoring Ceph with Datadog Last Updated: 2018-12-20 Red Hat Ceph Storage 3 Monitoring Ceph with Datadog Guide on Monitoring Ceph with Datadog

More information

Red Hat JBoss Fuse 6.1

Red Hat JBoss Fuse 6.1 Red Hat JBoss Fuse 6.1 Tooling Installation Guide Installing Red Hat JBoss Fuse ToolingRed Hat Fuse IDE Last Updated: 2017-10-16 Red Hat JBoss Fuse 6.1 Tooling Installation Guide Installing Red Hat JBoss

More information

Red Hat Developer Studio 12.0

Red Hat Developer Studio 12.0 Red Hat Developer Studio 12.0 Supported Configurations and Components Supported Configurations and Components for Red Hat Developer Studio Last Updated: 2018-07-16 Red Hat Developer Studio 12.0 Supported

More information

Red Hat 3Scale 2.0 Terminology

Red Hat 3Scale 2.0 Terminology Red Hat Scale 2.0 Terminology For Use with Red Hat Scale 2.0 Last Updated: 2018-0-08 Red Hat Scale 2.0 Terminology For Use with Red Hat Scale 2.0 Legal Notice Copyright 2018 Red Hat, Inc. The text of

More information

Red Hat Decision Manager 7.0

Red Hat Decision Manager 7.0 Red Hat Decision Manager 7.0 Installing and configuring Decision Server on IBM WebSphere Application Server For Red Hat Decision Manager 7.0 Last Updated: 2018-04-14 Red Hat Decision Manager 7.0 Installing

More information

Red Hat OpenStack Platform 10 Product Guide

Red Hat OpenStack Platform 10 Product Guide Red Hat OpenStack Platform 10 Product Guide Overview of Red Hat OpenStack Platform OpenStack Team Red Hat OpenStack Platform 10 Product Guide Overview of Red Hat OpenStack Platform OpenStack Team rhos-docs@redhat.com

More information

Red Hat Container Development Kit 3.0 Release Notes and Known Issues

Red Hat Container Development Kit 3.0 Release Notes and Known Issues Red Hat Container Development Kit 3.0 Release Notes and Known Issues Highlighted features and identified problems in Red Hat Container Development Kit 3.0 Brian Brock Robert Krátký Red Hat Developer Group

More information

Red Hat Mobile Application Platform 4.2 Operations Guide

Red Hat Mobile Application Platform 4.2 Operations Guide Red Hat Mobile Application Platform 4.2 Operations Guide For Red Hat Mobile Application Platform 4.2 Red Hat Customer Content Services Red Hat Mobile Application Platform 4.2 Operations Guide For Red

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Deploy Fernet on the Overcloud Deploy Fernet on the Red Hat OpenStack Platform director overcloud Last Updated: 2018-06-25 Red Hat OpenStack Platform 13 Deploy Fernet on

More information

Red Hat Ceph Storage Release Notes

Red Hat Ceph Storage Release Notes Red Hat Ceph Storage 1.3.2 Release Notes Release notes for Red Hat Ceph Storage 1.3.2 Red Hat Ceph Storage Documentation Team Red Hat Ceph Storage 1.3.2 Release Notes Release notes for Red Hat Ceph Storage

More information

Red Hat Enterprise Virtualization 3.6 Introduction to the User Portal

Red Hat Enterprise Virtualization 3.6 Introduction to the User Portal Red Hat Enterprise Virtualization 3.6 Introduction to the User Portal Accessing and Using the User Portal Red Hat Enterprise Virtualization Documentation Team Red Hat Enterprise Virtualization 3.6 Introduction

More information

Red Hat Enterprise Virtualization 3.6

Red Hat Enterprise Virtualization 3.6 Red Hat Enterprise Virtualization 3.6 Introduction to the User Portal Accessing and Using the User Portal Last Updated: 2017-09-27 Red Hat Enterprise Virtualization 3.6 Introduction to the User Portal

More information

Red Hat Development Suite 2.2

Red Hat Development Suite 2.2 Red Hat Development Suite 2.2 Installation Guide Installing Red Hat Development Suite Last Updated: 2018-03-23 Red Hat Development Suite 2.2 Installation Guide Installing Red Hat Development Suite Petra

More information

Red Hat JBoss Data Virtualization 6.3 Getting Started Guide

Red Hat JBoss Data Virtualization 6.3 Getting Started Guide Red Hat JBoss Data Virtualization 6.3 Getting Started Guide Learn how to perform a basic installation of Red Hat JBoss Data Virtualization and perform some rudimentary tasks with the product. David Sage

More information

Red Hat Cloud Infrastructure 1.1

Red Hat Cloud Infrastructure 1.1 Red Hat Cloud Infrastructure 1.1 Product Guide Overview of the Red Hat Cloud Infrastructure Last Updated: 2018-12-14 Red Hat Cloud Infrastructure 1.1 Product Guide Overview of the Red Hat Cloud Infrastructure

More information

Red Hat Cloud Suite 1.1

Red Hat Cloud Suite 1.1 Red Hat Cloud Suite 1.1 Product Guide Overview of the Red Hat Cloud Suite Last Updated: 2018-12-14 Red Hat Cloud Suite 1.1 Product Guide Overview of the Red Hat Cloud Suite Red Hat Cloud Suite Documentation

More information

Red Hat Process Automation Manager 7.0 Managing and monitoring business processes in Business Central

Red Hat Process Automation Manager 7.0 Managing and monitoring business processes in Business Central Red Hat Process Automation Manager 7.0 Managing and monitoring business processes in Business Central Last Updated: 2018-10-01 Red Hat Process Automation Manager 7.0 Managing and monitoring business processes

More information

Red Hat JBoss Data Grid 7.1 Feature Support Document

Red Hat JBoss Data Grid 7.1 Feature Support Document Red Hat JBoss Data Grid 7.1 Feature Support Document For use with Red Hat JBoss Data Grid 7.1 Red Hat Customer Content Services Red Hat JBoss Data Grid 7.1 Feature Support Document For use with Red Hat

More information

Red Hat JBoss Data Virtualization 6.2 Using the Dashboard Builder. David Sage

Red Hat JBoss Data Virtualization 6.2 Using the Dashboard Builder. David Sage Red Hat JBoss Data Virtualization 6.2 Using the Dashboard Builder David Sage Red Hat JBoss Data Virtualization 6.2 Using the Dashboard Builder David Sage dlesage@redhat.com Legal Notice Copyright 2017

More information

Red Hat JBoss Fuse 6.1

Red Hat JBoss Fuse 6.1 Red Hat JBoss Fuse 6.1 Management Console User Guide Managing your environment from the Web Last Updated: 2017-10-12 Red Hat JBoss Fuse 6.1 Management Console User Guide Managing your environment from

More information

Red Hat Developer Studio 12.9

Red Hat Developer Studio 12.9 Red Hat Developer Studio 12.9 Installation Guide Installing Red Hat Developer Studio Last Updated: 2018-10-08 Red Hat Developer Studio 12.9 Installation Guide Installing Red Hat Developer Studio Supriya

More information

Red Hat Ceph Storage 2 Using Keystone to Authenticate Ceph Object Gateway Users

Red Hat Ceph Storage 2 Using Keystone to Authenticate Ceph Object Gateway Users Red Hat Ceph Storage 2 Using Keystone to Authenticate Ceph Object Gateway Users Configuring OpenStack and Ceph Object Gateway to use Keystone for user authentication. Red Hat Ceph Storage Documentation

More information

Red Hat JBoss Web Server 3.1

Red Hat JBoss Web Server 3.1 Red Hat JBoss Web Server 3.1 Red Hat JBoss Web Server for OpenShift Installing and using Red Hat JBoss Web Server for OpenShift Last Updated: 2018-03-05 Red Hat JBoss Web Server 3.1 Red Hat JBoss Web

More information

Red Hat Gluster Storage 3.3

Red Hat Gluster Storage 3.3 Red Hat Gluster Storage 3.3 Quick Start Guide Getting Started with Web Administration Last Updated: 2017-12-15 Red Hat Gluster Storage 3.3 Quick Start Guide Getting Started with Web Administration Rakesh

More information

Red Hat OpenStack Platform 14

Red Hat OpenStack Platform 14 Red Hat OpenStack Platform 14 High Availability for Compute Instances Configure High Availability for Compute Instances Last Updated: 2019-02-11 Red Hat OpenStack Platform 14 High Availability for Compute

More information

Red Hat Ceph Storage 3

Red Hat Ceph Storage 3 Red Hat Ceph Storage 3 Using Keystone to Authenticate Ceph Object Gateway Users Configuring OpenStack and the Ceph Object Gateway to use Keystone for user authentication. Last Updated: 2018-12-20 Red

More information

Red Hat JBoss Enterprise Application Platform 7.1

Red Hat JBoss Enterprise Application Platform 7.1 Red Hat JBoss Enterprise Application Platform 7.1 Introduction to JBoss EAP For Use with Red Hat JBoss Enterprise Application Platform 7.1 Last Updated: 2018-02-08 Red Hat JBoss Enterprise Application

More information

Red Hat Ceph Storage 3

Red Hat Ceph Storage 3 Red Hat Ceph Storage 3 Ceph Object Gateway with LDAP/AD Guide Configuring Ceph Object Gateway to use LDAP and AD to authenticate object gateway users. Last Updated: 2017-12-04 Red Hat Ceph Storage 3 Ceph

More information

Red Hat Virtualization 4.0

Red Hat Virtualization 4.0 Red Hat Virtualization 4.0 Introduction to the Administration Portal Accessing and Using the Administration Portal Last Updated: 2017-11-28 Red Hat Virtualization 4.0 Introduction to the Administration

More information

Red Hat OpenStack Platform 8 Configure firewall rules for Red Hat OpenStack Platform director

Red Hat OpenStack Platform 8 Configure firewall rules for Red Hat OpenStack Platform director Red Hat OpenStack Platform 8 Configure firewall rules for Red Hat OpenStack Platform director Configure firewalls between the Controller and Compute nodes OpenStack Team Red Hat OpenStack Platform 8 Configure

More information

Red Hat Mobile Application Platform Hosted 3

Red Hat Mobile Application Platform Hosted 3 Red Hat Mobile Application Platform Hosted 3 Getting Started For Red Hat Mobile Application Platform Hosted 3 Last Updated: 2018-11-15 Red Hat Mobile Application Platform Hosted 3 Getting Started For

More information

Red Hat Certified Cloud and Service Provider Certification 1.0

Red Hat Certified Cloud and Service Provider Certification 1.0 Red Hat Certified Cloud and Service Provider Certification 1.0 Red Hat Certified Cloud and Service Provider Certification Workflow Guide For Use with Red Hat Certified Cloud and Service Provider 1.0 Last

More information

Red Hat Satellite 6.3

Red Hat Satellite 6.3 Red Hat Satellite 6.3 Errata Management Guide Installing Errata on Red Hat Satellite 6.3 Last Updated: 2018-05-04 Red Hat Satellite 6.3 Errata Management Guide Installing Errata on Red Hat Satellite 6.3

More information

Red Hat OpenStack Platform 10 CephFS Back End Guide for the Shared File System Service

Red Hat OpenStack Platform 10 CephFS Back End Guide for the Shared File System Service Red Hat OpenStack Platform 10 CephFS Back End Guide for the Shared File System Service Deploying a CephFS Back End for the Shared File System Service in a Red Hat OpenStack Platform Overcloud OpenStack

More information

Red Hat Enterprise Virtualization 3.6

Red Hat Enterprise Virtualization 3.6 Red Hat Enterprise Virtualization 3.6 Introduction to the Administration Portal Accessing and Using the Administration Portal Last Updated: 2017-09-27 Red Hat Enterprise Virtualization 3.6 Introduction

More information

.NET Core 2.0 Release Notes for Containers

.NET Core 2.0 Release Notes for Containers .NET Core 2.0 Release Notes for Containers Last Updated: 2018-06-07 .NET Core 2.0 Release Notes for Containers Legal Notice Copyright 2018 Red Hat, Inc. The text of and illustrations in this document

More information

Red Hat JBoss Fuse 6.1

Red Hat JBoss Fuse 6.1 Red Hat JBoss Fuse 6.1 Installation Guide Installing Red Hat JBoss Fuse on a computer Last Updated: 2017-10-12 Red Hat JBoss Fuse 6.1 Installation Guide Installing Red Hat JBoss Fuse on a computer JBoss

More information

Red Hat Process Automation Manager 7.0 Planning a Red Hat Process Automation Manager installation

Red Hat Process Automation Manager 7.0 Planning a Red Hat Process Automation Manager installation Red Hat Process Automation Manager 7.0 Planning a Red Hat Process Automation Manager installation Last Updated: 2018-08-31 Red Hat Process Automation Manager 7.0 Planning a Red Hat Process Automation

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Dell EMC PS Series Back End Guide A Guide to Using Dell EMC PS Series Storage in a Red Hat OpenStack Platform Overcloud Last Updated: 2018-06-29 Red Hat OpenStack Platform

More information

Red Hat JBoss Developer Studio 11.1

Red Hat JBoss Developer Studio 11.1 Red Hat JBoss Developer Studio 11.1 Supported Configurations and Components Supported Configurations and Components for Red Hat JBoss Developer Studio Last Updated: 2017-11-03 Red Hat JBoss Developer

More information

Red Hat JBoss Developer Studio Integration Stack 10.0 Installation Guide

Red Hat JBoss Developer Studio Integration Stack 10.0 Installation Guide Red Hat JBoss Developer Studio Integration Stack 10.0 Installation Guide Installing Red Hat JBoss Developer Studio Integration Stack Misha Husnain Ali Supriya Bharadwaj Red Hat Developer Group Documentation

More information

Red Hat CloudForms 4.2

Red Hat CloudForms 4.2 Red Hat CloudForms 4.2 Support Matrix Supported platforms and features in Red Hat CloudForms 4.2 Last Updated: 2018-03-16 Red Hat CloudForms 4.2 Support Matrix Supported platforms and features in Red

More information

Red Hat JBoss Fuse 7.0-TP

Red Hat JBoss Fuse 7.0-TP Red Hat JBoss Fuse 7.0-TP Ignite Sample Integration Tutorials Instructions for Creating Sample Integrations Last Updated: 2018-04-03 Red Hat JBoss Fuse 7.0-TP Ignite Sample Integration Tutorials Instructions

More information

Red Hat JBoss Enterprise Application Platform 7.2

Red Hat JBoss Enterprise Application Platform 7.2 Red Hat JBoss Enterprise Application Platform 7.2 Introduction to JBoss EAP For Use with Red Hat JBoss Enterprise Application Platform 7.2 Last Updated: 2018-11-29 Red Hat JBoss Enterprise Application

More information

Red Hat JBoss A-MQ 6.3

Red Hat JBoss A-MQ 6.3 Red Hat JBoss A-MQ 6.3 Migration Guide Migrating to Red Hat JBoss A-MQ 6.3 Last Updated: 2018-02-08 Red Hat JBoss A-MQ 6.3 Migration Guide Migrating to Red Hat JBoss A-MQ 6.3 JBoss A-MQ Docs Team Content

More information

Red Hat JBoss Developer Studio Integration Stack 9.0 Installation Guide

Red Hat JBoss Developer Studio Integration Stack 9.0 Installation Guide Red Hat JBoss Developer Studio Integration Stack 9.0 Installation Guide Installing Red Hat JBoss Developer Studio Integration Stack Misha Husnain Ali Supriya Bharadwaj Red Hat Developer Group Documentation

More information

Red Hat Mobile Application Platform Hosted 3

Red Hat Mobile Application Platform Hosted 3 Red Hat Mobile Application Platform Hosted 3 Drag and Drop Apps Guide For Red Hat Mobile Application Platform Hosted 3 Last Updated: 2017-12-21 Red Hat Mobile Application Platform Hosted 3 Drag and Drop

More information

Edition 0.1. real scenarios for managing EAP instances. Last Updated:

Edition 0.1. real scenarios for managing EAP instances. Last Updated: JBoss Operations Network 3.0 Managing JBoss Servers with JBoss ON Edition 0.1 real scenarios for managing EAP instances Last Updated: 2017-10-25 JBoss Operations Network 3.0 Managing JBoss Servers with

More information

Red Hat Decision Manager 7.0 Migrating from Red Hat JBoss BRMS 6.4 to Red Hat Decision Manager 7.0

Red Hat Decision Manager 7.0 Migrating from Red Hat JBoss BRMS 6.4 to Red Hat Decision Manager 7.0 Red Hat Decision Manager 7.0 Migrating from Red Hat JBoss BRMS 6.4 to Red Hat Decision Manager 7.0 Last Updated: 2018-05-25 Red Hat Decision Manager 7.0 Migrating from Red Hat JBoss BRMS 6.4 to Red Hat

More information

Red Hat Fuse 7.2 Fuse Online Sample Integration Tutorials

Red Hat Fuse 7.2 Fuse Online Sample Integration Tutorials Red Hat Fuse 7.2 Fuse Online Sample Integration Tutorials How business users can share data among different applications Last Updated: 2018-12-13 Red Hat Fuse 7.2 Fuse Online Sample Integration Tutorials

More information

Red Hat JBoss Developer Studio 11.3

Red Hat JBoss Developer Studio 11.3 Red Hat JBoss Developer Studio 11.3 Installation Guide Installing Red Hat JBoss Developer Studio Last Updated: 2018-05-01 Red Hat JBoss Developer Studio 11.3 Installation Guide Installing Red Hat JBoss

More information

Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials

Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials How business users can share data among different applications Last Updated: 2018-09-25 Red Hat Fuse 7.1 Fuse Online Sample Integration Tutorials

More information