Sponsored Content
Top Forums UNIX for Advanced & Expert Users Howto upgrade AIX to Level Update 4320-02_AIX_ML Post 21192 by progressdll on Monday 13th of May 2002 10:40:00 AM
Old 05-13-2002
Howto upgrade AIX to Level Update 4320-02_AIX_ML

Hi,

Installing a new version of PROGRESS DB software 9.1c requires us to upgrade AIX to Level Update 4320-02_AIX_ML
( http://techweb.progress.com/kbase/19779 )

How would a do this savely.

This is what i have already.
1) take a system backup.
2) find the level we are on right now.
# instfix -i | grep AIX_ML
All filesets for 4.3.0.0_AIX_ML were found.
All filesets for 4.3.1.0_AIX_ML were found.
All filesets for 4.3.2.0_AIX_ML were found.

So we are on level 4.3.2.0 ( right ? )

3) go the IBM to get the patch
http://service.software.ibm.com/rs6k/fixdb.html

So i choose version 4 with fix 4320-02
and get 2 results back:
IY00411
IX89889

Now i can choose our AIX level = AIX 4.3.2
a fix server and a language.

What should i choose. Is the language important?

Thanks for any feedback
Joeri
 

10 More Discussions You Might Find Interesting

1. Solaris

Where/What/Howto solve warning/error msg about Kernel patch level?

required Solaris 5.10 Kernel patch 137111-03 required Solaris 5.10 Fibre Channel Device Driver patch 125184-08 I want to know about the descriptions and what the patches will do. I searched www.sun.com (patches/updates) but don't see I am looking for. (1 Reply)
Discussion started by: Y4Net
1 Replies

2. AIX

Technology Level update errors

Hello, I recently did an update from 5300-0-0 to 5300-05-06. When I run lppchk -v I get the following errors: # lppchk -v lppchk: The following filesets need to be installed or corrected to bring the system to a consistent state: invscout.rte 2.1.0.0 (not... (4 Replies)
Discussion started by: dkranes
4 Replies

3. AIX

How to upgrade AIX TL (technology level)

Hello. Im attempting to install Oracle 11g, but my current AIX is a bit too old. Oracle 11g require TV 5300-05-06, and my current AIX TV is: % oslevel -s 5300-05-00 So what would be the best way to update TV? Thanks. (6 Replies)
Discussion started by: bsddaemon
6 Replies

4. AIX

Update technology level

Hello I update one lpar from TL03 to TL06 reboot and check with lppchk -v, errpt and everything looks fine then I commit my fileset and I update to TL08-04. The installation was ok. I reboot my machine again check with lppchk -v and errpt and its ok, but when I type oslevel -s I get this... (5 Replies)
Discussion started by: lo-lp-kl
5 Replies

5. Solaris

What update level included fcinfo?

Hi all first post here. quick question what Solaris 10 update level included this utility? I have a bunch of Sun boxes at varying levels of Solaris 10 some have it some do not. When I do my install I take the full option for the packages to install on all the systems. thanks in advance... Mike (4 Replies)
Discussion started by: mike_243us
4 Replies

6. AIX

How to upgrade AIX Firmware & TL Maintenance Level in AIX

Steps to upgrade AIX TL ( technology Level ) / Maintenance Level in AIX ( including Firmware HMC VIOS ) This article or post covers upgrades for - Hardware Management Console ( HMC ) - Firmware ( also known as microcode ) - VIO ( Virtual I/O Server = PowerVM ) - AIX Version, Technology... (2 Replies)
Discussion started by: filosophizer
2 Replies

7. Solaris

Zone Servers Level Upgrade

Hi All, I am planning to do the Solaris level upgrade from "Solaris 10 1/06 s10s_u1wos_19a" to "Solaris 10 10/09 s10s_u8wos_08a" with 7 Non-global zones on it..... I have done Level upgrade for Solaris 10 boxes without Non-global zones..... Can any one let me know, whether it is possible... (8 Replies)
Discussion started by: indradev
8 Replies

8. AIX

HELP: Howto update an lpp_source in NIM

I'm SO confused about the question of whether I can or cannot update an lpp_source with a bunch of patches. Someone I know who I think knows a lot about AIX and NIM says I should never do this. But I'm looking at the Redbook "NIM from A to Z in AIX 5L", which seems to describe exactly how to do it,... (10 Replies)
Discussion started by: tgphelps
10 Replies

9. AIX

[Howto] Update AIX in HACMP cluster-nodes

As i have updated a lot of HACMP-nodes lately the question arises how to do it with minimal downtime. Of course it is easily possible to have a downtime and do the version update during this. In the best of worlds you always get the downtime you need - unfortunately we have yet to find this best of... (4 Replies)
Discussion started by: bakunin
4 Replies

10. AIX

Pre-installation verification before technology level update

Hello, I was trying to upgrade TL on a lab server (test box). I did worked on (few) these type of SP and TL updates in the recent past. I saw the below message for the first time on server. current OS level : 7100-03-01-1341 downloaded the newest/recent fix pack from fix central as... (3 Replies)
Discussion started by: system.engineer
3 Replies
URI::URL(3)						User Contributed Perl Documentation					       URI::URL(3)

NAME
URI::URL - Uniform Resource Locators SYNOPSIS
$u1 = URI::URL->new($str, $base); $u2 = $u1->abs; DESCRIPTION
This module is provided for backwards compatibility with modules that depend on the interface provided by the "URI::URL" class that used to be distributed with the libwww-perl library. The following differences exist compared to the "URI" class interface: o The URI::URL module exports the url() function as an alternate constructor interface. o The constructor takes an optional $base argument. The "URI::URL" class is a subclass of "URI::WithBase". o The URI::URL->newlocal class method is the same as URI::file->new_abs. o URI::URL::strict(1) o $url->print_on method o $url->crack method o $url->full_path: same as ($uri->abs_path || "/") o $url->netloc: same as $uri->authority o $url->epath, $url->equery: same as $uri->path, $uri->query o $url->path and $url->query pass unescaped strings. o $url->path_components: same as $uri->path_segments (if you don't consider path segment parameters) o $url->params and $url->eparams methods o $url->base method. See URI::WithBase. o $url->abs and $url->rel have an optional $base argument. See URI::WithBase. o $url->frag: same as $uri->fragment o $url->keywords: same as $uri->query_keywords o $url->localpath and friends map to $uri->file. o $url->address and $url->encoded822addr: same as $uri->to for mailto URI o $url->groupart method for news URI o $url->article: same as $uri->message SEE ALSO
URI, URI::WithBase COPYRIGHT
Copyright 1998-2000 Gisle Aas. perl v5.16.3 2012-02-11 URI::URL(3)
All times are GMT -4. The time now is 02:26 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy