Operating System - OpenVMS
1753828 Members
8566 Online
108805 Solutions
New Discussion юеВ

netbeans 5.0 openvms itanium 8.2-1

 
SOLVED
Go to solution
Volker Halle
Honored Contributor

Re: netbeans 5.0 openvms itanium 8.2-1

Lucinda,

how come IDE$STARTUP.COM is trying to execute a file on your user disk ?

%DCL-E-OPENIN, error opening NOR$USER:[PERRYL.NEWNETBEANS]HOTSPOT.COM; as input
-RMS-E-FNF, file not found

Are there some logicals defined to point to that non-existing file ? Or are there references to other DCL procedures, which are called by IDE$STARTUP.COM ?

Volker.
Lucinda_1
Frequent Advisor

Re: netbeans 5.0 openvms itanium 8.2-1

not a clue
Volker Halle
Honored Contributor

Re: netbeans 5.0 openvms itanium 8.2-1

Lucinda,

as you terminated the installation, you can't look at the IDE$STARTUP.COM file.

Try extracting that file and have a look at it. Especially look at all lines containing '@'.

$ PROD EXTRACT FILE IDESERVER/SELECT=IDE$STARTUP.COM

Volker.
Lucinda_1
Frequent Advisor

Re: netbeans 5.0 openvms itanium 8.2-1

$ $ PROD EXTRACT FILE IDESERVER/SELECT=IDE$STARTUP.COM

The following product has been selected:
HP I64VMS IDESERVER T5.0-1 Layered Product

Do you want to continue? [YES] Y

Portion done: 0%...100%
$ TYPE IDE$STARTUP.COM
%TYPE-W-SEARCHFAIL, error searching for SYS$COMMON:[SYSMGR]IDE$STARTUP.COM;
-RMS-E-FNF, file not found
$ DIR DISK0:[*...]IDE$STARTUP.COM

Directory DEVI64$DKA0:[SYS0.SYSCOMMON.SYS$STARTUP]

IDE$STARTUP.COM;1

Total of 1 file.

Directory DEVI64$DKA0:[VMS$COMMON.SYS$STARTUP]

IDE$STARTUP.COM;1

Total of 1 file.

Grand total of 2 directories, 2 files.
$
Lucinda_1
Frequent Advisor

Re: netbeans 5.0 openvms itanium 8.2-1

$ type DEVI64$DKA0:[SYS0.SYSCOMMON.SYS$STARTUP]ide$startup.com
$! Startup command procedure to start the IDE Server
$! Version 1.0
$! This command procedure was generated during installation
$! on 5-DEC-2006 11:54:37.59
$ define/system/exec/trans=(conc, term) IDE$ROOT DEVI64$DKA0:[SYS0.SYSCOMMON.]
$ define/system/exec/trans=(conc, term) IDE$JARS_ROOT DEVI64$DKA0:[SYS0.SYSCOMMO
N.IDE$SERVER.JARS.]
$ define/system/exec/trans=(conc, term) IDE$ANT_ROOT DEVI64$DKA0:[SYS0.SYSCOMM
ON.IDE$SERVER.ANT.]
$ @DEVI64$DKA0:[SYS0.SYSCOMMON.][IDE$SERVER.COM]IDE$IDESTARTUP.COM
$ exit
$
Volker Halle
Honored Contributor

Re: netbeans 5.0 openvms itanium 8.2-1

Lucinda,

so what does IDE$STARTUP.COM do or what other procedures does it call ?

Volker.
Lucinda_1
Frequent Advisor

Re: netbeans 5.0 openvms itanium 8.2-1

see answer above your question
Volker Halle
Honored Contributor

Re: netbeans 5.0 openvms itanium 8.2-1

Lucinda,

what happens if you manually invoke @SYS$STARTUP:ide$startup.com ? Same error ?

What's in DEVI64$DKA0:[SYS0.SYSCOMMON.][IDE$SERVER.COM]IDE$IDESTARTUP.COM

Search all .COMs on your disk for the string 'hotspot'

As an example, you will get this type of error message like this:

$ @hotspot
%DCL-E-OPENIN, error opening USERDISK1:[HALLE]HOTSPOT.COM; as input
-RMS-E-FNF, file not found

Volker.
Lucinda_1
Frequent Advisor

Re: netbeans 5.0 openvms itanium 8.2-1

no HOTSPOT files on my system at all. However, I was able to
$ define/system ide$jdk_version 150

Then...

$ @sys$startup:ide$shutdown
$ @sys$startup:ide$startup

AND IT IS WORKING, I AM ABLE TO REMOTE CONNECT FROM MY DESKTOP
Craig A Berry
Honored Contributor

Re: netbeans 5.0 openvms itanium 8.2-1

Hotspot is the Java bytecode engine used on Itanium. My best guess is that the NetBeans installation assumes you are installing from a process where Java is set up and running. It may well use Java for some pre- or post-installation tasks. You probably need to run something like:

@SYS$COMMON:[JAVA$150.COM]JAVA$150_SETUP

before installing NetBeans.