Skip to main content

Maximo Application Suite Installation Highlights

Maximo Application Suite Installation Highlights 

1. Hardware & Software Requirement 

2. IBM Portal Access - Get key file and Entitlement key

3. Jump Server - To access cluster and  install MAS

4. Internet access and Network Permissions to pull images from IBM Container Registry

5. Storage - File (70%) and Block

6. Storage allocation for Image Registry

7. Install Ansible Collection or Setup MAS CLI in Jump Server to run MAS8 playbook. OCP Cluster Setup.

8. Mirror and Airgap the OCP and MAS images with clusters

9. Environment variables preparation for Core , Manage , Assist & Health etc

10.MAS 8.9 core ans Manage Installation

11. Industry Solutions & Add-Ons Installation

12. LDAP setup or Users creation from Suite Admin.

13. Key Data Points understanding after install (Projects , pods , builds , CRD,Monitoring, Events , PVC )

14. Logs Gathering

15. Migration Setup

16. DB Connection setup for outside connection

17. Access Install paths from OCP

18. Database Backup and Restore

19. MongoDB Backup & Restore

20. SSL Certificates and Installation

21. BIRT Setup for Report Development

22. DB Read only user creation

23. Attachments Configuration 

24. JMS Setup 

25. Cluster Setup

26. SMTP Setup 

27. BIM Installation 

28. Customization Setup

29. Mobile Connectivity and Development 

30. Others ( Stop and Start manage , Internet facing at OCP cluster level ,App Points Replacement , Timezone settings )

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=...