Is it possible to host java 1.4 on 64-bit Ubuntu?

I need to configure an outdated application that uses Tomcat 4 and works using the 1.4 JDK.

I tried installing Linux JDK 1.4 from the sun download site on Ubuntu 9.04, but it did not install.

Is it possible to install JDK 1.4 on a 64-bit version of Ubuntu?

When I try to install j2sdk-1_4_2_19-linux-ia64.bin version, I get the following error:

./install.sfx.22146: 1: : not found
./install.sfx.22146: 1: ELF2 @@H @8@@@@@@ @ @@@ P: not found
./install.sfx.22146: 2: Syntax error: "(" unexpected

+5
source share
5 answers

Do you particularly relate to 64-bit Java 1.4? I tried with 32 bit Java 1.4 and it works. I have grouped a web application to use memory over 2 GB.

+3
source

SAP , ​​ , , . , , .

JDK, . , , , JRE.

0

32- , 32- JVM 64- Linux ( , - , 32-). , , chroot. , Debian ia32-libs, 32- libc , JVM.

j2sdk-1_4_2_19-linux-ia64.bin IA64, AMD64 (x86_64) - .

0
source

It looks like this is running incorrectly. The ELF line indicates the executable, but it runs as a shell script, i.e. sh xxxx.bin, and if ./xxxx.bin;

0
source

yes 32-bit binaries will not work on a 64-bit system. You can put 32-bit vm on a 64-bit ubuntu server (vmware player?). Then run tomcat inside.

-1
source

All Articles