Skip to main content

Essential Components and Their Purposes in Maximo Application Suite (MAS) Installation

Essential Components and Their Purposes in Maximo Application Suite (MAS) Installation:

Core Platforms and Infrastructure:

  • OpenShift Container Platform (OCP): Provides the Kubernetes-based container management required to host MAS and its applications, enabling scalability, resource orchestration, and high availability
  • Base Component- MAS Core: Contains foundational elements of MAS, including licensing and authentication, that support all MAS applications.

MAS Applications (optional based on requirements):

  • Manage: Core asset management application that helps users manage maintenance, work orders, and asset lifecycle.
  • Monitor: Provides real-time monitoring of assets and operational data for improved performance insights and anomaly detection.
  • Health: Assesses and evaluates asset health based on operational data and historical trends to predict possible failures.
  • Predict: Uses predictive analytics to forecast potential asset issues, allowing proactive maintenance and operational planning.
  • Safety: Ensures safety compliance and incident management, helping organizations protect workers and assets.
  • Assist: Provides AI-driven assistance for maintenance tasks, supporting technicians with detailed instructions and recommendations.
  • Maximo Visual Inspection (MVI): Uses AI for visual inspection of assets, detecting defects and monitoring conditions with image analysis.

Add-Ons and Industry Solutions (based on requirement):

  • Add-Ons: Additional features and functionalities to enhance MAS based on organizational needs, such as IoT integration or augmented analytics.
  • Industry Solutions: Specialized modules tailored to industry-specific requirements (e.g., utilities, manufacturing, transportation).
  • IoT & Tools: Integrates IoT capabilities for real-time data capture from connected devices, providing operational insights and automation potential.


Additional Components for Installation:

  • Service Binding Operator: Manages service bindings, connecting applications with their dependent services within OpenShift.
  • Cert Manager: Automates certificate management, ensuring secure communication between MAS components.
  • MongoDB: A NoSQL database used for storing application data, especially suited for flexible, unstructured data models.
  • Business Automation Services (BAS): Provides automation tools for workflows and business processes within MAS.
  • Security License Service (SLS): Manages licensing across MAS applications, controlling access and usage rights.
  • IBM Cloud Pak: A suite of IBM services that provide additional cloud capabilities, including automation and integration, supporting MAS’s cloud-native architecture.
  • WebSphere Application Server (WAS) Liberty: Lightweight Java runtime environment that supports application services within MAS.
  • Apache Kafka: Provides data streaming capabilities, handling real-time data feeds for various MAS applications.
  • IBM DB2 and DB2 Warehouse: Database solutions for storing structured data, essential for analytics, reporting, and application data.
  • Apache Spark: A data processing framework for large-scale analytics, supporting predictive modeling and data science within MAS.
  • NVIDIA GPU Operator: Manages GPU resources for workloads needing high-performance computing, often used in machine learning tasks within MAS.

Main MAS Components with Dependencies:

  • Core Installation DependenciesMongoDB, BAS, SLS
  • IoT SetupKafka, DB2 Warehouse
  • Manage: Core and DB2
  • Monitor: IoT, DB2 Warehouse, Kafka, and MongoDB 
  • Health: DB2 and DB2 Warehouse
  • Predict: IoT, Apache Spark, Health, Monitor, DB2 Warehouse, ML, Watson Studio
  • Visual Inspection: NVIDIA GPU Operator
  • Assist: IoT and DB2 Warehouse
  • Safety: Object Storage, CouchDB, and Watson Discovery

Comments

Popular posts from this blog

Key Roles and Career Opportunities in IBM Maximo and Maximo Application Suite (MAS 8)

Exploring Roles in the Maximo and MAS 8: Maximo Functional Consultant Key Responsibilities : Understand and document stakeholders needs. Customize Maximo/MAS for client requirements. Create workflows, reports, and user interfaces. Train and support end-users. Test configurations and troubleshoot issues Career Path :   Senior Functional Consultant, Solution Architect, Project Manager Maximo Technical Consultant Key Responsibilities: Install, configure, and upgrade Maximo and MAS. Perform system integrations with other enterprise applications. Configure and customize Maximo/MAS applications using Java, Python, and scripting. Optimize system performance and ensure reliability. Provide technical support and troubleshooting. Career Path: Senior Technical Consultant, Technical Lead, MAS/Maximo Architect MAS Specialist Key Responsibilities: Implement and configure MAS 8. Work with OpenShift and Cloud platforms for MAS deployment. Optimize MAS solutions for specific client needs. Monitor a...

Maximo vs Maximo Application Suite 8 Vs Maximo Application Suite 9

Maximo 7.6.1.3 vs MAS 8 Vs MAS 9 User Interface Maximo 7.6.1.3 : Classic UI with traditional navigation and layout. MAS 8 : Common user interface with updated navigation, including slide-out menus and quick launch options. MAS 9 : Enhanced user interface with improved navigation, multi-page dashboards, and more intuitive design. Architecture Maximo 7.6.1.3 : Traditional architecture with on-premises deployment. MAS 8 : Transition to Kubernetes container platform for more scalable and flexible deployment. MAS 9 : Improved Kubernetes platform with better resource management and scalability. Licensing Model Maximo 7.6.1.3 : Named license model with fixed user licenses. MAS 8 : Introduction of AppPoints, a flexible licensing model based on application usage. MAS 9 : Enhanced AppPoints model with more flexibility and options for different user roles. Asset Management Products Maximo 7.6.1.3 : Multiple EAM products bundled in one suite. MAS 8 : Expanded EAM products with additional features ...

Automation Script (Action Launch Point) - Extracting 16-Digit Numbers with Specific Patterns

Automation Script - Extracting 16-Digit Numbers with Specific Patterns Set the escalation to read the script. The script takes input from the Long Description, finds the 16-digit numbers from that string with the mentioned pattern, and then sets those numbers to the Summary (in the SR application) Step 1: Create script with action launch point having two variables (IN, OUT).          Script Code       --------------       # Find 16 Digit numbers from Long Description and Set all 16 Digit Numbers in Summary           from java.lang import Runtime from java.util.regex import Matcher from java.util.regex import Pattern descript='' longdesc1='' # Find the patterns of 16 Digit numbers from String and Set that 16 digit numbers into summary pp1 = Pattern.compile("((\d{4})-(\d{4})-(\d{4})-(\d{4}))|((\d{4}) (\d{4}) (\d{4}) (\d{4}))|(\\b\\d{16}\\b)" ) m1= pp1.matcher(longdesc) while(m1.find()):  longdesc1=...