cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP Upgrade Gui not connecting during STARTUP.bat

Former Member
0 Kudos

Hello,

I am running into this java related error when I try starting the Upgrade GUI for ABAP. JPREPARE is started but somehow DSUGui.bat isn't working and throwing an error.

Following is sort of error log while executing STARTUP.bat

I appreciate any prompt help. I have highlighted the areas where I have confusion. Please let me know if you have any questions.

K:\Downloads\upgrade\upgrade_master_51035701>startup.bat "jce_policy_zip=c:\java" "guistart=on"

  • Installing runtime K:\Downloads\upgrade\upgrade_master_51035701\MIDBOOT\NTAMD64\vcredist_x64.msi...

1 file(s) copied.

  • Running MIDBOOT to unpack and startup...

    • Determined SAP system ID as 'C7D'

    • Starting upgrade to SAP systems based on SAP Netweaver 7.01

    • Using upgrade directory H:\usr\sap\C7D\upg

    • Setting permissions on H:\usr\sap\C7D\upg

processed dir: H:\usr\sap\C7D\upg

processed dir: H:\usr\sap\C7D\upg

    • Locating SAPCAR

    • Extracting SAP-JVM

    • Extracting SL-Controller

    • Unpacking c:\java to SAP-JVM

Exception in thread "main" java.lang.reflect.InvocationTargetException

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:585)

at com.sap.sdt.bootstrap.BootStrap.start(BootStrap.java:166)

at com.sap.sdt.bootstrap.Startup.start(Startup.java:138)

at com.sap.sdt.bootstrap.Startup.main(Startup.java:353)

Caused by: java.util.zip.ZipException: Access is denied

at java.util.zip.ZipFile.open(Native Method)

at java.util.zip.ZipFile.<init>(ZipFile.java:205)

at java.util.zip.ZipFile.<init>(ZipFile.java:86)

at com.sap.sdt.bootstrap.ZipTool.unpackZIP(ZipTool.java:26)

at com.sap.sdt.bootstrap.ZipTool.main(ZipTool.java:90)

... 7 more

    • Starting SL-Controller...

Apr 4, 2009 9:27:36 PM [Info]: *************************

Apr 4, 2009 9:27:36 PM [Info]: Starting Server

Apr 4, 2009 9:27:36 PM [Info]: Reading server configuration.

Apr 4, 2009 9:27:37 PM [Info]: Reading service configuration DSUService.

Apr 4, 2009 9:27:37 PM [Info]: Configuring LogManager ...

Apr 4, 2009 9:27:37 PM [Info]: *************************************************

Apr 4, 2009 9:27:37 PM [Info]: Starting SL Controller listening on port 4241 ...

Apr 4, 2009 9:27:37 PM [Info]: Starting StorageService ...

Apr 4, 2009 9:27:37 PM [Info]: Initializing SecurityManager ...

Apr 4, 2009 9:27:37 PM [Error]: java.lang.ExceptionInInitializerError: null

Apr 4, 2009 9:27:38 PM [Error]: java.lang.ExceptionInInitializerError: null

Apr 4, 2009 9:27:38 PM [Fatal]: Error during controller startup.

Apr 4, 2009 9:27:38 PM [Fatal]: SL Controller exiting.

Thanks a lot for your time,

One Idea

Accepted Solutions (1)

Accepted Solutions (1)

markus_doehr2
Active Contributor
0 Kudos

> K:\Downloads\upgrade\upgrade_master_51035701>startup.bat "jce_policy_zip=c:\java"

You need to specify the full path including the filename of the jce, not just the directory, something like

startup.bat "jce_policy_zip=c:\java\jce_policy_zip_1.5.zip"

> Caused by: java.util.zip.ZipException: Access is denied

> at java.util.zip.ZipFile.open(Native Method)

> at java.util.zip.ZipFile.<init>(ZipFile.java:205)

> at java.util.zip.ZipFile.<init>(ZipFile.java:86)

> at com.sap.sdt.bootstrap.ZipTool.unpackZIP(ZipTool.java:26)

> at com.sap.sdt.bootstrap.ZipTool.main(ZipTool.java:90)

The system tries to "unzip c:\java" - which is a directory and not permitted.

Markus

Former Member
0 Kudos

If possible, I want to give you double points for this. Thank you so much!!!

Former Member
0 Kudos

Superb solution! Wonder why SAP do not bother to maintain this small, but so critical info in the installation guide.

Answers (0)