IBM Maximo: MAS CLI Options: Difference between revisions

From Wiki
 
(2 intermediate revisions by the same user not shown)
Line 53: Line 53:
   ...
   ...


= Manage Bundel Sizes =
= Manage Bundle Sizes =


  mas install --mas-catalog-version v9-250501-amd64 --ibm-entitlement-key $IBM_ENTITLEMENT_KEY \
  mas install --mas-catalog-version v9-250501-amd64 --ibm-entitlement-key $IBM_ENTITLEMENT_KEY \
Line 62: Line 62:
The parameter <code>--manage-server-bundle-size {dev,snojms,small,jms}</code> selects the predefined Manage server bundle profile used during deployment.
The parameter <code>--manage-server-bundle-size {dev,snojms,small,jms}</code> selects the predefined Manage server bundle profile used during deployment.


* '''dev'''
* '''dev''': Development-oriented profile. Recommended for labs, demos, and small validation environments
** Development-oriented profile
* '''snojms''': Small profile without JMS. Helps reduce resource and storage requirements
** Recommended for labs, demos, and small validation environments
* '''small''': Small standard profile. Suitable for compact environments that still want a more complete setup than <code>dev</code>
** Lowest footprint among the available options


* '''snojms''
* '''jms''': Profile with JMS enabled. Use when Manage features or integrations require JMS queues
** Small profile without JMS
** Requires JMS-related storage configuration: --manage-jms
** Appropriate when JMS queues are not required
** Helps reduce resource and storage requirements
 
* '''small''
** Small standard profile
** Suitable for compact environments that still want a more complete setup than <code>dev</code>
 
* '''jms'''
** Profile with JMS enabled
** Use when Manage features or integrations require JMS queues
** Typically requires JMS-related storage configuration
 
=== Related parameters ===
 
<code>--manage-jms</code>
JMS queue storage settings shown in logs: ** <code>mas_app_settings_jms_queue_pvc_storage_class</code> ** <code>mas_app_settings_jms_queue_pvc_accessmode</code>
=== References ===
 
Local CLI help captured in notes:
** sessao3_anotacoes.txt: lines showing <code>--manage-server-bundle-size {dev,snojms,small,jms}</code> and related flags
** sessao-2/sessao2_anatocoes.txt: lines showing the same option in command usage
 
Local example usage:
** sessao3_anotacoes.txt: example command using <code>--manage-server-bundle-size "dev"</code>
 
Local pipeline/log evidence:
** mas-lab/mas.log: <code>mas_app_settings_server_bundles_size</code>
** mas-lab/mas.log: resolved summary for server bundle size
** mas-lab/mas.log: JMS default summary
** mas-lab/mas.log: JMS PVC storage class
** mas-lab/mas.log: JMS PVC access mode
 
=== Notes ===
 
The exact internal implementation of each profile is not described in the files available here. The definitions above are inferred from:
 
the CLI option names
the related JMS flags
the local pipeline/log parameters captured in this workspace


= Ver também =
= Ver também =

Latest revision as of 16:26, 3 May 2026

Caso você deseja outras opções de instalação veja abaixo:

MAS Core

export IBM_ENTITLEMENT_KEY=...

mas install --mas-catalog-version v9-250501-amd64 --ibm-entitlement-key $IBM_ENTITLEMENT_KEY \
 --mas-channel 9.0.x --mas-instance-id inst1 --mas-workspace-id ws01 --mas-workspace-name "MAS Workspace 01" \
 --non-prod \
 --storage-class-rwo "ocs-storagecluster-ceph-rbd" --storage-class-rwx "ocs-storagecluster-cephfs" \
 --storage-pipeline "ocs-storagecluster-cephfs" --storage-accessmode "ReadWriteMany" \
 --license-file "/tmp/license.dat" \
 --uds-email "[email protected]" --uds-firstname "Enio" --uds-lastname "Basso" \
 --mongodb-namespace "mongoce" \
 --accept-license --no-confirm

Manage Components options

for other componentes add to --manage-components variable:

  • Asset Configuration Manager: acm=latest
  • Aviation: aviation=latest
  • Civil Infrastructure: civil=latest
  • Envizi Connector: envizi=latest
  • Health: health=latest
  • Health, Safety and Environment (HSE): hse=latest
  • Maximo IT: icd=latest
  • Nuclear: nuclear=latest
  • Oil & Gas: oilandgas=latest
  • Connector for Oracle: oracleadapter=latest
  • Connector for SAP: sapadapter=latest
  • Service Provider: serviceprovider=latest
  • Spatial: spatial=latest
  • Reliability Strategies: strategize=latest
  • Transportation: transportation=latest
  • TRIRIGA Connector: tririga=latest
  • Utilities: utilities=latest
  • Workday Connector: workday=latest


mas install --mas-catalog-version v9-250501-amd64 --ibm-entitlement-key $IBM_ENTITLEMENT_KEY \
 ...
 --manage-components "base=latest,health=latest" \
 ...

Manage Languages

mas install --mas-catalog-version v9-250501-amd64 --ibm-entitlement-key $IBM_ENTITLEMENT_KEY \
 ...
 --manage-base-language "EN" \
 --manage-secondary-languages "PT-BR,ES" \
 ...

Manage Bundle Sizes

mas install --mas-catalog-version v9-250501-amd64 --ibm-entitlement-key $IBM_ENTITLEMENT_KEY \
 ...
 --manage-server-bundle-size "dev" \
 ...

The parameter --manage-server-bundle-size {dev,snojms,small,jms} selects the predefined Manage server bundle profile used during deployment.

  • dev: Development-oriented profile. Recommended for labs, demos, and small validation environments
  • snojms: Small profile without JMS. Helps reduce resource and storage requirements
  • small: Small standard profile. Suitable for compact environments that still want a more complete setup than dev
  • jms: Profile with JMS enabled. Use when Manage features or integrations require JMS queues
    • Requires JMS-related storage configuration: --manage-jms

Ver também