Wednesday, 7 January 2015

Maximo 7.6 installation

It's here.  Maximo 7.6.  And it's stellar. Packed with new features focusing on usability enhancements, streamlined installation, multi-tenant architecture, analytics .

https://www.ibm.com/developerworks/community/blogs/a9ba1efe-b731-4317-9724-a181d6155e3a/entry/bilog_maximo_7_6?lang=en

Maximo 7.6 has a lot of interesting features. One of these is the new installation technology.
Richard Lesses has published a useful set of articles with a step-by-step guide of how to install Maximo 7.6.

Installing Maximo 7.6: A first look, part 1


Reference :http://maximodev.blogspot.in/2015/01/maximo-76-installation.html

Sunday, 28 December 2014

Process to avoid Concurrent Sessions for a User in Maximo


Connect to the Maximo database (IP)
Execute the following query :
 select * from MAXPROPVALUE where propname='mxe.enableConcurrentCheck'

If the value of the PROPVALUE field is 1, then a user can only have a single session on maximo. If it is 0, then the user can have multiple concurrent sessions in Maximo.

To update this value if required, execute the following SQL statement : 

# For Multiple Session 
UPDATE MAXPROPVALUE SET PROPVALUE='0 WHERE PROPNAME='mxe.enableConcurrentCheck' 


#For Single Session

UPDATE MAXPROPVALUE SET PROPVALUE='1'  WHERE PROPNAME='mxe.enableConcurrentCheck'


Thursday, 25 December 2014

Changing the Maximo Login Message

References : 

http://www-01.ibm.com/support/docview.wss?uid=swg21499942

Changing timeout of Maximo Session

Below are the steps to change the timeout from the default 30 minutes
1. Edit web.xml  found in directory using  text editor like Notepad:
[maximo root]/applications/maximo/maximouiweb/webmodule/WEB-INF
2. Change the value in the session-timeout tag in session-config section as follows:
<session-config>
<!-- The session-timeout element defines the default session timeout
interval for all sessions created in this web application. The
specified timeout must be expressed in a whole number of minutes. -->
<session-timeout>
60</session-timeout>
</session-config>
The session timeout is now set for one hour in the above example.
3. Save and close the file.
4. Rebuild and redeploy the maximo.ear file.