License issue on Java install


 
Thread Tools Search this Thread
Operating Systems AIX License issue on Java install
# 1  
Old 06-22-2007
License issue on Java install

I'm a AIX novice - please bear with me..

I'm trying to install Java14_64_sdk on an Aix 5.2 server (P690)

I've copied the ff files to a separate directory:
Java14_64.ext
Java14_64.license
Java14_64.sdk

I then run smitty installp, point to the above directory and choose the Java14_64.sdk (all) to install. The preview run fails on the ff:

LICENSE AGREEMENT FAILURES
------------------
The installation cannot proceed because the following filesets
require software license agreement files which could not be found
on the system or installation media:

Java14_64.sdk

What am I doing wrong?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Fedora

Fedora: Uninstall Java JDK 1.8 and install Oracle Java 1.7.15

Hi All, I have just downloaded fedora 27 iso and set it up in virtual box. I want to learn Hadoop so trying to install Apache hadoop. Before all those I have to install Oracle Java 1.7.15 (as mentioned in the Apache hadoop page). Can you please help me how to Uninstall currently installed... (6 Replies)
Discussion started by: TechGyaann
6 Replies

2. Gentoo

Java install

Hi Guys I have installed latest java version 8.0, but now when I use java -version I still get an old version. How do I correct this ? Thanks in advance... (3 Replies)
Discussion started by: Phuti
3 Replies

3. Solaris

Java Install Failure

Hello Everyone, I am trying to install a new version of Java on Solaris 10 but I am unable to install. The server is a SPARC 64bit machine. I downloaded Java SE Runtime Environment 8u101 (jre-8u101-solaris-sparcv9.tar.gz), then changed the directory to /usr/java. Copied the tar.gz... (5 Replies)
Discussion started by: dhiralall
5 Replies

4. UNIX for Dummies Questions & Answers

Install + launch java

Hi I want to write a very short bash script for doing the following action (on Ubuntu): First, install java Second, launch at a specific time (e.g. 4.30 pm) a java ANT program. How can I do this? (3 Replies)
Discussion started by: Helveticus
3 Replies

5. Shell Programming and Scripting

Updating the license tag in XML file with new license

Hi All, I have a XML file : System.xml in which I want to update the license tag with the new data from file licence.xml. The content of files is in following format: System.xml: <?xml version="1.0"?> <!DOCTYPE Configuration SYSTEM "SystemVariables.dtd"> <usageConfiguration... (2 Replies)
Discussion started by: Pramod_T
2 Replies

6. Debian

Java won't install

I am using VirtualBox if this helps. btw, I am quite new, and have just started using Linux (It is pretty good I guess) So, to use the self extracting binary-file "jre-6u22-linux-i586.bin" for Java so I can play on FICS (Free Internet Chess server) I had to use the consol command "chmod a+x... (1 Reply)
Discussion started by: ClarkN
1 Replies

7. Solaris

Change hostid for software install - license issue

Hi all. Solaris 9. After I change the hostid, how can I change it back without rebooting the machine? Thanks (2 Replies)
Discussion started by: jamie_collins
2 Replies

8. AIX

Cannot Accept License Agreement on Smit Install?

Hey guys, Just been handed control of a Bull AIX server running 5.1. Erm... first port of call was SSH as I cannot stand telnet. Installed the required prerequisites and un-tar'd the images ready for smit to install. I've gone to "Install and Update Software". Then "Install Software" set... (4 Replies)
Discussion started by: MattBibby
4 Replies

9. AIX

Trying to install Java 5

I am not an AIX admin, but the guy that usually is has left and I am now the default person to do this stuff (scary for them). I am trying to install Java 5 on AIX 5.3, and am getting MISSING REQUISITES: The following filesets are required by one or more of the selected filesets listed... (5 Replies)
Discussion started by: Kirath
5 Replies

10. Shell Programming and Scripting

License error when Invoked from Java Code

Hi all, I am getting a License error when Iam trying to call a perl script which builds TestRT (Test Real Time) application. When Iam calling the same script from command prompt it is building successfully. Iam using Solaris 9 Operating system. I have checked all the environment variables... (0 Replies)
Discussion started by: srini.g
0 Replies
Login or Register to Ask a Question
INSTALL(1)						      General Commands Manual							INSTALL(1)

NAME
install - install binaries SYNOPSIS
install [-cs] [-f flags] [-g group] [-m mode] [-o owner] file1 file2 install [-cs] [-f flags] [-g group] [-m mode] [-o owner] file1 ... fileN directory DESCRIPTION
The file(s) are moved (or copied if the c option is specified) to the target file or directory. If the destination is a directory, then the file is moved into directory with its original filename. If the target file already exists, it is overwritten if permissions allow. c Copy the file. This flag turns off the default behavior of install where it deletes the original file after creating the target. f Specify the target's file flags. (See chflags(1) for a list of possible flags and their meanings.) g Specify a group. m Specify an alternate mode. The default mode is set to rwxr-xr-x (0755). The specified mode may be either an octal or symbolic value; see chmod(1) for a description of possible mode values. o Specify an owner. s Install exec's the command strip(1) to strip binaries so that install can be portable over a large number of systems and binary types. By default, install preserves all file flags, with the exception of the ``nodump'' flag. The install utility attempts to prevent moving a file onto itself. Installing /dev/null creates an empty file. Upon successful completion a value of 0 is returned. Otherwise, a value of 1 is returned. SEE ALSO
chflags(1), chgrp(1), chmod(1), cp(1), mv(1), strip(1), chown(8) HISTORY
The install utility appeared in 4.2BSD. 4.2 Berkeley Distribution February 20, 1996 INSTALL(1)