JRE Update: Difference between revisions

From SEPsesam
Line 49: Line 49:
Fixed since SEP sesam Version 4.2.2.28.
Fixed since SEP sesam Version 4.2.2.28.


=== Solution===
=== Solution for new SEP sesam Server Installations===
'''Attention:''' This solution is only for new (fresh) SEP sesam Server installations:
 
* Complete deinstall SEP sesam Server
* Complete deinstall Java JRE 7u51
* Download an older Java JRE Version (for example: Java JRE 7u45)
** Java Download Archive for older Versions: http://www.oracle.com/technetwork/java/javase/downloads/java-archive-downloads-javase7-521261.html#jdk-7u45-oth-JPR
* Install an older Java JRE Version (for example: Java JRE 7u45)
* Install SEP sesam server
 
=== Solution after SEP sesam Upgrades===
'''Attention:''' This solution is only after an SEP sesam Server upgrade was performed:
 
* Open the file <SESAM_ROOT>/var/ini/sm_java.policy
* Open the file <SESAM_ROOT>/var/ini/sm_java.policy
* Go to section  
* Go to section  

Revision as of 14:06, 28 January 2014

After updating Java to a newer major version SEP sesam Server will not start

Note:

This mostly concerns customers with SEP sesam installations on Windows based operating systems.


Indication

After a customer has updated his Java installation from major version 6 to version 7, the SEP sesam Server cannot start. This manual explains how to fix this issue.

Cause of the problem

The SEP sesam Server configuration file:

<sesam_install_dir>\var\ini\sm.ini

It includes a configuration section which initializes the path to the JRE virtual machine detected during installation of SEP sesam:

[JAVA]
java_exit_on_fail=no
java_interpreter=C:\Program Files\Java\jre6\bin\java 

After the update from JRE 6 to JRE 7, the configured path is not present on the system anymore; this causes the SEP sesam start to fail.

Solution

In order to resolve the issue edit this configuration file and change the path pointing to the old Java to the path of the new Java installation. Usually this Path is:

C:\Program Files\Java\jre7\bin\java

Change the configuration file to something like this:

[JAVA]
java_exit_on_fail=no
java_interpreter=C:\Program Files\Java\jre7\bin\java 

Starting the SEP sesam Service should work after the change has been saved to the configuration file.

Further steps include changing the Start menu items as well as the desktop icons. Both include the JRE installation path and have to be changed to make the GUI start possible, compare the following screenshot:

Jreupdate.jpg

SEP sesam RMI (GUI) Server will not start up with Java Version 7 Update 51

With Java™ SE Development Kit 7, Update 51 (JDK 7u51) the java policy requires the right to listen on port 11401!

See Update Release Notes - Java™ SE Development Kit 7, Update 51 (JDK 7u51) .

Fixed since SEP sesam Version 4.2.2.28.

Solution for new SEP sesam Server Installations

Attention: This solution is only for new (fresh) SEP sesam Server installations:

Solution after SEP sesam Upgrades

Attention: This solution is only after an SEP sesam Server upgrade was performed:

  • Open the file <SESAM_ROOT>/var/ini/sm_java.policy
  • Go to section
 // NET
 permission java.net.SocketPermission "*:*", "connect,resolve";
 permission java.net.SocketPermission "*:11301", "connect,accept,resolve";
 permission java.net.SocketPermission "*:11401", "connect,accept,resolve";
 permission java.net.SocketPermission "*:21", "connect,accept,resolve";


  • Change the line
permission java.net.SocketPermission "*:11401", "connect,accept,resolve";
  • to
permission java.net.SocketPermission "*:11401", "connect,accept,resolve,listen";