In
this document I tried to write as less as possible English and concentrated to
include only Information, ‘How to’, commands and its output. I suggest using
Google do read theory from many sites & pdf books.
Before
using this book I suggest to read all theory thoroughly to understand the
command & other stuff in details & fully.
I
am a doer who always believes in learning & sharing, I am not topic expert
but tried to cover my knowledge in this document so that person like me can use
this document and understand the topic. I am not saying this doc is 100% error
proof. If you find any error or want to share some thing to add or feedback,
please write to Srikant.Ande@Gmail.com
Srikant
Ande
Contents
1. Step-1 Installing WAS
V8.5.
I have kept my WAS V8.5. in location ‘/IBM/websphere/dumps/WAS_ND_V8.5_installBinaries’
Following are files listing.
wasadm@ngensrilinlab[WAS_ND_V8.5_installBinaries] $ pwd
/IBM/websphere/dumps/WAS_ND_V8.5_installBinaries
wasadm@ngensrilinlab[WAS_ND_V8.5_installBinaries] $
wasadm@ngensrilinlab[WAS_ND_V8.5_installBinaries] $ ls -rlth
total 48K
drwxr-xr-x 2 wasadm wasgrp 4.0K Jul 27 2015 readme
drwxr-xr-x 2 wasadm wasgrp 4.0K Jul 27 2015 lafiles
-rwxr-xr-x 1 wasadm wasgrp
370 Jul 27 2015 Copyright.txt
drwxr-xr-x 3 wasadm wasgrp 4.0K Jul 27 2015 disk3
drwxr-xr-x 3 wasadm wasgrp 4.0K Jul 27 2015 Remote_Installation_Tool_for_IBM_i
drwxr-xr-x 5 wasadm wasgrp 4.0K Jul 27 2015 disk1
drwxr-xr-x 2 wasadm wasgrp 4.0K Jul 27 2015 WLP
drwxr-xr-x 3 wasadm wasgrp 4.0K Jul 27 2015 responsefiles
-rwxr-xr-x 1 wasadm wasgrp
81 Jul 27 2015 repository.config
drwxr-xr-x 3 wasadm wasgrp 4.0K Jul 27 2015 disk2
-rwxr-xr-x 1 wasadm wasgrp
964 Jul 27 2015 resp.xml
-rwxr-x--- 1 wasadm wasgrp
972 Jul 27 2015 resp_kvr.xml
wasadm@ngensrilinlab[WAS_ND_V8.5_installBinaries] $
I had already installed Installation
Manager (IM) at location ‘/IBM/websphere/dumps/IManger’ (How to install IM
refer to my earlier blogs notes).
I am installing my WAS V8.5 at
location ‘/IBM/websphere/WAS8.5_NEWtesting’
a)
Response file for WAS V8.5 installation.
wasadm@ngensrilinlab[WAS_ND_V8.5_installBinaries] $ cat /IBM/websphere/dumps/IManger/WAS8.5.0.0_install_17Aug2017_resposeFile.xml
<?xml version="1.0" encoding="UTF-8" ?>
<agent-input clean="true"
temporary="true">
<server>
<repository
location="/IBM/websphere/dumps/WAS_ND_V8.5_installBinaries" />
</server>
<install modify='false'>
<offering id='com.ibm.websphere.ND.v85'
profile='IBM WebSphere Application Server V8.5'
features='core.feature,ejbdeploy,thinclient,embeddablecontainer,com.ibm.sdk.6_64bit,liberty'
installFixes='none'/>
</install>
<profile id='IBM WebSphere Application Server V8.5'
installLocation='/IBM/websphere/WAS8.5_NEWtesting'>
<data key='eclipseLocation' value='/IBM/websphere/WAS8.5_NEWtesting'/>
<data key='user.import.profile' value='false'/>
<data key='cic.selector.nl' value='en'/>
</profile>
</agent-input>
wasadm@ngensrilinlab[WAS_ND_V8.5_installBinaries] $
Note#1
Some important
notes & point to read & understand before we start with installation
of WAS V8.5.
-- core.feature:
Required. WebSphere Application Server core content.
-- ejbdeploy:
Required. Pre-Enterprise JavaBeans (EJB) 3.0 modules.
-- thinclient:
Required. Stand-alone thin clients and resource adapters.
--
embeddablecontainer: Embeddable EJB container.
-- samples: Sample
applications feature.
--
com.ibm.sdk.6_64bit: 64-bit SDK (If you are installing on a 64-bit system -
If you want to use the 64-bit IBM Software Development Kit, include com.ibm.sdk.6_64bit
as a feature in the response file. This feature can only be selected on a
64-bit system.)
--
com.ibm.sdk.6_32bit: 32-bit SDK (If you are installing on a 64-bit system -
If you want to use the 32-bit IBM Software Development Kit, include
com.ibm.sdk.6_32bit as a feature in the response file.)
-- liberty:
WebSphere Application Server Liberty Profile
Follow these
guidelines:
-- Include this
feature only if you are installing on a 64-bit system; do not include it if
you are installing on a 32-bit system.
-- This does not
apply to Solaris x86 64-bit systems.
-- You must
include one of the two options if you are installing on a 64-bit system.
-- You cannot
modify this installation later and change the selection.
Note#2
---------<Out
of Topic>---------
Comments in XML
The syntax for
writing comments in XML is similar to that of HTML.
<!-- This is a
comment -->
Two dashes in the
middle of a comment are not allowed.
Not allowed:
<!-- This is a
-- comment -->
Strange, but
allowed:
<!-- This is a
- - comment -->
---------<\Out of Topic>---------
Note#3
/usr (/usr/IBM/IMShared)
or if installed as non-root ID then ‘/home/<id>/IBM/IMShared’ is required to have free space > 1.05 GB
(recomended 1.1 GB minimum) for each
installation, RP, & FP.
The Installation
Manager shared resources directory (IMShared) is identified during the
installation of the first product package.
The IMShared
resources directory is where installation artifacts are located that can be
used by one or more package groups. By default, IBM Installation Manager (IM)
saves earlier versions of a package in the IM shared resources directory to
roll back to if you experience issues with later versions of updates, fixes,
or packages. When Installation Manager rolls back a package to a previous
version, the current version of the files is uninstalled and the earlier
version is reinstalled. These backup files can consume a lot of filesystem
space.
When using silent
mode there is preference that you can use to prevent the caching of this
data. During any installation or maintenance operation, you can use this
preference:
–preferences
com.ibm.cic.common.core.preferences.preserveDownloadedArtifacts=false
If this option is
selected when doing future rollback the repository for fixpack to which
rollback is being done should be added to IM.
Reference - http://www-01.ibm.com/support/docview.wss?uid=swg21665327
|
Installation location directory should
be empty, if any file exists then it will fails installation.
wasadm@ngensrilinlab[WAS_ND_V8.5_installBinaries]
$ ls -rlth
/IBM/websphere/WAS8.5_NEWtesting
total 0
wasadm@ngensrilinlab[WAS_ND_V8.5_installBinaries]
$
b)
Installing WAS V8.5 through command line silently.
wasadm@ngensrilinlab[tools] $ /IBM/websphere/dumps/IManger/tools/imcl input
/IBM/websphere/dumps/IManger/WAS8.5.0.0_install_17Aug2017_resposeFile.xml
-acceptLicense -sVP
Preparing IBM WebSphere Application Server Network Deployment
(100% of < 1 MB at 101 KB/sec; 0 seconds remain)
(100% of < 1 MB at 989 KB/sec; 0 seconds remain)
(100% of < 1 MB at 53 KB/sec; 0 seconds remain)
(100% of < 1 MB at 203 KB/sec; 0 seconds remain)
(100% of < 1 MB at 989 KB/sec; 0 seconds remain)
.
.
#Large output is archived, refer to output#1
.
.
Searching for saved files.
Cleaning up saved files.
Cleaning up saved files. Cleaning up saved files.
Cleaning up saved files.
Validating eclipse configuration for IBM WebSphere Application
Server V8.5
Installed com.ibm.websphere.ND.v85_8.5.0.20120501_1108 to the
/IBM/websphere/WAS8.5_NEWtesting directory.
CRIMA1137W WARNING: The following packages do not support the
64-bit version of Installation Manager that you are using: IBM WebSphere
Application Server Network Deployment version 8.5.0.0. If you continue, you
might have issues with installation and deployment. For information about
64-bit mode support for a package, see the package documentation.
Explanation: The 64-bit version of Installation Manager checks each
package for 64-bit support. If a package does not support the 64-bit version,
you receive a warning.
User Action: Use a 32-bit version of Installation Manager to
install the package.
wasadm@ngensrilinlab[tools] $
c)
Verifying WAS V8.5 installation.
wasadm@ngensrilinlab[tools] $ cd
/IBM/websphere/WAS8.5_NEWtesting/
wasadm@ngensrilinlab[WAS8.5_NEWtesting] $ ll
total 168
drwxr-xr-x 10 wasadm wasgrp 12288 Aug 17 16:48 bin
drwxr-xr-x 2 wasadm
wasgrp 4096 Aug 17 16:48 configuration
drwxr-xr-x 4 wasadm
wasgrp 4096 Aug 17 16:48 deploytool
drwxr-xr-x 6 wasadm
wasgrp 4096 Aug 17 16:48 derby
drwxr-xr-x 7 wasadm
wasgrp 4096 Aug 17 16:48 dev
drwxr-xr-x 2 wasadm
wasgrp 4096 Aug 17 16:48 endorsed_apis
drwxr-xr-x 6 wasadm
wasgrp 4096 Aug 17 16:48 etc
drwxr-xr-x 17 wasadm wasgrp
4096 Aug 17 16:48 features
drwxr-xr-x 3 wasadm
wasgrp 4096 Aug 17 16:48 firststeps
drwxr-xr-x 2 wasadm
wasgrp 4096 Aug 17 16:48 installableApps
drwxr-xr-x 4 wasadm
wasgrp 4096 Aug 17 16:48
installedConnectors
drwxr-xr-x 2 wasadm
wasgrp 4096 Aug 17 16:48
installedFilters
drwxr-xr-x 3 wasadm
wasgrp 4096 Aug 17 16:48 instutils
drwxr-xr-x 8 wasadm
wasgrp 4096 Aug 17 16:48 java
drwxr-xr-x 2 wasadm
wasgrp 4096 Aug 17 16:48 lafiles
drwxr-xr-x 7 wasadm
wasgrp 4096 Aug 17 16:48 lib
drwxr-xr-x 2 wasadm
wasgrp 4096 Aug 17 16:48 links
drwxr-xr-x 3 wasadm
wasgrp 4096 Aug 17 16:48 logs
drwxr-xr-x 7 wasadm
wasgrp 4096 Aug 17 16:48
optionalLibraries
drwxr-xr-x 7 wasadm wasgrp
20480 Aug 17 16:48 plugins
drwxr-xr-x 8 wasadm
wasgrp 4096 Aug 17 16:48
profileTemplates
drwxr-xr-x 18 wasadm wasgrp
4096 Aug 17 16:48 properties
drwxr-xr-x 4 wasadm
wasgrp 4096 Aug 17 16:48 runtimes
drwxr-xr-x 2 wasadm
wasgrp 4096 Aug 17 16:48 sar2war_tool
drwxr-xr-x 2 wasadm
wasgrp 4096 Aug 17 16:48 Scheduler
drwxr-xr-x 10 wasadm wasgrp
4096 Aug 17 16:48 scriptLibraries
drwxr-xr-x 20 wasadm wasgrp
4096 Aug 17 16:48 systemApps
drwxr-xr-x 2 wasadm
wasgrp 4096 Aug 17 16:48 temp
drwxr-xr-x 2 wasadm
wasgrp 4096 Aug 17 16:48 tio
drwxr-xr-x 3 wasadm
wasgrp 4096 Aug 17 16:48 tivoli
drwxr-xr-x 7 wasadm
wasgrp 4096 Aug 17 16:48 UDDIReg
drwxr-xr-x 2 wasadm
wasgrp 4096 Aug 17 16:48 uninstall
drwxr-xr-x 3 wasadm
wasgrp 4096 Aug 17 16:48 universalDriver
drwxr-xr-x 6 wasadm
wasgrp 4096 Aug 17 16:48 util
drwxr-xr-x 6 wasadm
wasgrp 4096 Aug 17 16:48 web
drwxr-xr-x 9 wasadm
wasgrp 4096 Aug 17 16:48 wlp
wasadm@ngensrilinlab[WAS8.5_NEWtesting] $ cd
logs/
wasadm@ngensrilinlab[logs] $ ll
total 4
drwxr-xr-x 2 wasadm wasgrp 4096 Aug 17 16:48 postinstall
wasadm@ngensrilinlab[logs] $ cd
postinstall/
wasadm@ngensrilinlab[postinstall] $ ll
total 60
-rwxr-xr-x 1 wasadm wasgrp 49540 Aug 17 16:48
postinstallerConfigActions1502959732797.log
-rwxr-xr-x 1 wasadm wasgrp
2906 Aug 17 16:48 postinstall.log
wasadm@ngensrilinlab[postinstall] $ tail
postinstall.log
<millis>1502959733821</millis>
<sequence>105</sequence>
<logger>com.ibm.ws.postinstall</logger>
<level>INFO</level>
<class>com.ibm.ws.postinstall.LaunchUnifiedPostInstaller</class>
<method>logReturnCode</method>
<thread>0</thread>
<message>INSTCONFSUCCESS: All config actions ran successfully with
return code 0</message>
</record>
</log>wasadm@ngensrilinlab[postinstall]
$ cd ../
wasadm@ngensrilinlab[logs] $ cd
..
wasadm@ngensrilinlab[WAS8.5_NEWtesting] $ cd
bin/
wasadm@ngensrilinlab[bin] $ ./versionInfo.sh
WVER0010I: Copyright (c) IBM Corporation 2002, 2012; All rights
reserved.
WVER0012I: VersionInfo reporter version 1.15.1.48, dated 2/8/12
--------------------------------------------------------------------------------
IBM WebSphere Product Installation Status Report
--------------------------------------------------------------------------------
Report at date and time August 17, 2017 4:51:02 PM HKT
Installation
--------------------------------------------------------------------------------
Product Directory
/IBM/websphere/WAS8.5_NEWtesting
Version Directory
/IBM/websphere/WAS8.5_NEWtesting/properties/version
DTD Directory
/IBM/websphere/WAS8.5_NEWtesting/properties/version/dtd
Log Directory
/IBM/websphere/dumps/var/ibm/InstallationManager/logs
Product List
--------------------------------------------------------------------------------
ND
installed
Installed Product
--------------------------------------------------------------------------------
Name IBM
WebSphere Application Server Network Deployment
Version 8.5.0.0
ID ND
Build Level
gm1218.01
Build Date 5/1/12
Package
com.ibm.websphere.ND.v85_8.5.0.20120501_1108
Architecture x86-64
(64 bit)
Installed Features IBM
64-bit WebSphere SDK for Java
WebSphere Application Server Full Profile
EJBDeploy tool for pre-EJB 3.0 modules
Embeddable EJB container
WebSphere Application Server Liberty Profile
Stand-alone thin clients and resource adapters
--------------------------------------------------------------------------------
End Installation Status Report
--------------------------------------------------------------------------------
wasadm@ngensrilinlab[bin]
wasadm@ngensrilinlab[websphere] $ du
-sch WAS8.5_NEWtesting/
1.4G WAS8.5_NEWtesting/
1.4G total
wasadm@ngensrilinlab[websphere] $
<~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~>
2.
Step-2
Applying Refresh Pack RP V8.5.5.0 (V8.5.0.0 à
V8.5.5.0).
Note#4
In WebSphere
Application Server Version 8.5.5.0, the Liberty profile was promoted from a
feature to an independently installable offering. You cannot make an inplace
update of the Version 8.5.0.x Liberty profile feature. The wlp folder
includes the Liberty runtime and any user data or server configurations that
you have saved in the wlp/usr folder. If you have a combined full-profile and
Liberty-profile Version 8.5.0.x installation, the update program will back up
the wlp folder for the existing Version 8.5.0.x Liberty profile feature into
the wlp.bak_<timestamp> folder and uninstall the feature during an
update to Version 8.5.5.0 or higher. You can continue using Liberty from the
backed-up location or copy it elsewhere. To update the Liberty profile to
Version 8.5.5.0 or higher, you then must install WebSphere Application Server
Liberty Network Deployment (with the com.ibm.websphere.liberty.ND.v85
offering ID). After installing WebSphere Application Server Liberty Network
Deployment, you can move any user data and server configurations from the
wlp.bak_<timestamp> folder to the new Liberty installation.
https://www.ibm.com/support/knowledgecenter/SSAW57_8.5.5/com.ibm.websphere.wlp.nd.multiplatform.doc/ae/twlp_migrate_liberty.html
|
I kept my RP V8.5.5 binaries at
location ‘/IBM/websphere/dumps/WAS_RP_855’
wasadm@ngensrilinlab[WAS_RP_855] $ pwd
/IBM/websphere/dumps/WAS_RP_855
wasadm@ngensrilinlab[WAS_RP_855] $ du -sch .
2.6G .
2.6G total
wasadm@ngensrilinlab[WAS_RP_855] $ ll
total 3584
drwxr-x--- 3 wasadm wasgrp
4096 May 14 2013 atoc
drwxr-x--- 2 wasadm wasgrp 266240 May 14 2013 files
drwxr-x--- 2 wasadm wasgrp
77824 May 14 2013 native
drwxr-x--- 2 wasadm wasgrp
4096 May 14 2013 Offerings
drwxr-x--- 2 wasadm wasgrp
4096 May 14 2013 plugins
-rwxr-x--- 1 wasadm wasgrp
1284 May 14 2013
repository.config
-rwxr-x--- 1 wasadm wasgrp 149643 May 14 2013 repository.xml
-rwxr-x--- 1 wasadm wasgrp 349483 May 14 2013
update_com.ibm.websphere.BASETRIAL.v85_8.5.5000.20130514_1044_from_8.5.0.20120501_1108.xml
-rwxr-x--- 1 wasadm wasgrp 349552 May 14 2013 update_com.ibm.websphere.BASE.v85_8.5.5000.20130514_1044_from_8.5.0.20120501_1108.xml
-rwxr-x--- 1 wasadm wasgrp 349491 May 14 2013
update_com.ibm.websphere.DEVELOPERSILAN.v85_8.5.5000.20130514_1044_from_8.5.0.20120501_1108.xml
-rwxr-x--- 1 wasadm wasgrp 349580 May 14 2013 update_com.ibm.websphere.DEVELOPERS.v85_8.5.5000.20130514_1044_from_8.5.0.20120501_1108.xml
-rwxr-x--- 1 wasadm wasgrp 349545 May 14 2013
update_com.ibm.websphere.EXPRESSTRIAL.v85_8.5.5000.20130514_1044_from_8.5.0.20120501_1108.xml
-rwxr-x--- 1 wasadm wasgrp 349711 May 14 2013
update_com.ibm.websphere.EXPRESS.v85_8.5.5000.20130514_1044_from_8.5.0.20120501_1108.xml
-rwxr-x--- 1 wasadm wasgrp 124749 May 14 2013
update_com.ibm.websphere.NDDMZTRIAL.v85_8.5.5000.20130514_1044_from_8.5.0.20120501_1108.xml
-rwxr-x--- 1 wasadm wasgrp 124717 May 14 2013
update_com.ibm.websphere.NDDMZ.v85_8.5.5000.20130514_1044_from_8.5.0.20120501_1108.xml
-rwxr-x--- 1 wasadm wasgrp 365220 May 14 2013
update_com.ibm.websphere.NDTRIAL.v85_8.5.5000.20130514_1044_from_8.5.0.20120501_1108.xml
-rwxr-x--- 1 wasadm wasgrp 365385 May 14 2013
update_com.ibm.websphere.ND.v85_8.5.5000.20130514_1044_from_8.5.0.20120501_1108.xml
wasadm@ngensrilinlab[WAS_RP_855] $
a)
Response file to apply RP V8.5.5.0
(liberty feature is removed from response options, please notice
it)
wasadm@ngensrilinlab[WAS_RP_855] $ cat /IBM/websphere/dumps/IManger/WAS8.5.5.0_RefreshPack_17Aug2017_resposeFile.xml
<?xml version="1.0"
encoding="UTF-8" ?>
<agent-input clean="true"
temporary="true">
<server>
<repository
location="/IBM/websphere/dumps/WAS_RP_855" />
</server>
<install modify='false'>
<offering id='com.ibm.websphere.ND.v85'
profile='IBM WebSphere Application Server V8.5'
features='core.feature,ejbdeploy,thinclient,embeddablecontainer,com.ibm.sdk.6_64bit'
installFixes='none'/>
</install>
<profile id='IBM WebSphere Application Server V8.5'
installLocation='/IBM/websphere/WAS8.5_NEWtesting'>
<data key='eclipseLocation'
value='/IBM/websphere/WAS8.5_NEWtesting'/>
<data key='user.import.profile' value='false'/>
<data key='cic.selector.nl' value='en'/>
</profile>
</agent-input>
wasadm@ngensrilinlab[WAS_RP_855]
b)
Applying & upgrading RP WAS V8.5.5.0
wasadm@ngensrilinlab[IManger] $ /IBM/websphere/dumps/IManger/tools/imcl
input
/IBM/websphere/dumps/IManger/WAS8.5.5.0_RefreshPack_17Aug2017_resposeFile.xml
-acceptLicense -sVP
Preparing IBM WebSphere Application Server Network Deployment
(100% of < 1 MB at 99 KB/sec; 0 seconds remain)
(100% of < 1 MB at 1552 KB/sec; 0 seconds remain)
(100% of < 1 MB at 107 KB/sec; 0 seconds remain)
(100% of < 1 MB at 498 KB/sec; 0 seconds remain)
(100% of < 1 MB at 1552 KB/sec; 0 seconds remain)
.
.
#Large output is archived, refer to output#2
.
.
Validating eclipse configuration for IBM WebSphere Application
Server V8.5
.
Updated to com.ibm.websphere.ND.v85_8.5.5000.20130514_1044 in the
/IBM/websphere/WAS8.5_NEWtesting directory.
CRIMA1137W WARNING: The following packages do not support the
64-bit version of Installation Manager that you are using: IBM WebSphere
Application Server Network Deployment installed version 8.5.0.0. If you
continue, you might have issues with installation and deployment. For
information about 64-bit mode support for a package, see the package
documentation.
Explanation: The 64-bit version of Installation Manager checks each
package for 64-bit support. If a package does not support the 64-bit version,
you receive a warning.
User Action: Use a 32-bit version of Installation Manager to
install the package.
WARNING: An installation of WebSphere Application Server with the
Liberty profile feature was detected.
In WebSphere Application Server Version 8.5.5.0, the Liberty
profile was promoted from a feature to an independently installable offering.
To update Liberty to Version 8.5.5.0 or higher and obtain future updates,
install the new IBM WebSphere Application Server Liberty Network Deployment
installation package. The offering ID for this package is:
com.ibm.websphere.liberty.ND.v85.
If you continue with this update, the installation of WebSphere
Application Server and its features will be updated to the selected version,
except for the Liberty profile feature. For the Liberty profile feature, a
complete back up will be created in a folder labelled wlp.bak_<timestamp>
and the feature will be removed from the package group.
After installing the new Liberty profile offering, you can copy
your data and server configurations from the back up folder to the new
installation. Or, if they are kept in another location, follow your usual
procedure for managing your data and server configurations. Additional
instructions for updating to Liberty 8.5.5.x using the new Liberty offering are
documented in the information center:
http://www14.software.ibm.com/webapp/wsbroker/redirect?version=phil&product=was-nd-mp&topic=twlp_migrating_liberty
WARNING: In WebSphere Application Server Version 8.5.5.0, the
Liberty profile was promoted from a feature to an independently installable
offering. To update Liberty to Version 8.5.5.0 or higher and obtain future
updates, install the new IBM WebSphere Application Server Liberty Network Deployment
installation package. The offering ID for this package is:
com.ibm.websphere.liberty.ND.v85.
The installation of WebSphere Application Server and its features
were updated to the selected version, except for the Liberty profile feature.
For the Liberty profile feature, a complete back up was created in a folder
labelled wlp.bak_<timestamp> and the feature was removed from the package
group.
After installing the new Liberty profile offering, you can copy
your data and server configurations from the back up folder to the new
installation. Or, if they are kept in another location, follow your usual
procedure for managing your data and server configurations. See the information
center for details: http://www14.software.ibm.com/webapp/wsbroker/redirect?version=phil&product=was-nd-mp&topic=twlp_migrating_liberty
wasadm@ngensrilinlab[IManger] $
c)
Verifying RP WAS V8.5.5.0 upgrade.
wasadm@ngensrilinlab[IManger] $ /IBM/websphere/WAS8.5_NEWtesting/bin/versionInfo.sh
WVER0010I: Copyright (c) IBM Corporation 2002, 2012; All rights
reserved.
WVER0012I: VersionInfo reporter version 1.15.1.48, dated 2/8/12
--------------------------------------------------------------------------------
IBM WebSphere Product Installation Status Report
--------------------------------------------------------------------------------
Report at date and time August 17, 2017 5:36:22 PM HKT
Installation
--------------------------------------------------------------------------------
Product Directory
/IBM/websphere/WAS8.5_NEWtesting
Version Directory /IBM/websphere/WAS8.5_NEWtesting/properties/version
DTD Directory
/IBM/websphere/WAS8.5_NEWtesting/properties/version/dtd
Log Directory
/IBM/websphere/dumps/var/ibm/InstallationManager/logs
Product List
--------------------------------------------------------------------------------
ND
installed
Installed Product
--------------------------------------------------------------------------------
Name IBM
WebSphere Application Server Network Deployment
Version 8.5.5.0
ID ND
Build Level
gm1319.01
Build Date 5/14/13
Package
com.ibm.websphere.ND.v85_8.5.5000.20130514_1044
Architecture x86-64
(64 bit)
Installed Features IBM
64-bit WebSphere SDK for Java
WebSphere Application Server Full Profile
EJBDeploy tool for pre-EJB 3.0 modules
Embeddable EJB container
Stand-alone
thin clients and resource adapters
--------------------------------------------------------------------------------
End Installation Status Report
--------------------------------------------------------------------------------
wasadm@ngensrilinlab[IManger] $
<~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~>
3.
Step-3
Applying Fix Pack FP WAS V8.5.5.10.
a)
Downloading FP WAS V8.5.5.10 & preparing for upgrade applying.
wasadm@ngensrilinlab[WASnd8.5.5FP10] $ ll
total 2626232
-rwxr-x--- 1 wasadm wasgrp
910351841 Aug 17 17:52 8.5.5-WS-WAS-FP0000010-part1.zip
-rwxr-x--- 1 wasadm wasgrp 1776270554 Aug 17 17:53
8.5.5-WS-WAS-FP0000010-part2.zip
wasadm@ngensrilinlab[WASnd8.5.5FP10] $ pwd
/IBM/websphere/dumps/WASnd8.5.5FP10
wasadm@ngensrilinlab[WASnd8.5.5FP10] $
wasadm@ngensrilinlab[WASnd8.5.5FP10] $ unzip 8.5.5-WS-WAS-FP0000010-part2.zip ; rm -iv
8.5.5-WS-WAS-FP0000010-part2.zip ; unzip 8.5.5-WS-WAS-FP0000010-part1.zip ; rm
-iv 8.5.5-WS-WAS-FP0000010-part1.zip
Archive:
8.5.5-WS-WAS-FP0000010-part2.zip
.
.
#Large output is archived, refer to output#3
.
.
rm: remove regular file `8.5.5-WS-WAS-FP0000010-part2.zip'? y
removed `8.5.5-WS-WAS-FP0000010-part2.zip'
Archive:
8.5.5-WS-WAS-FP0000010-part1.zip
creating: Offerings/
creating: atoc/
creating: atoc/nq/
creating: files/
creating: plugins/
.
.
#Large output is archived, refer to output#4
.
.
rm: remove regular file `8.5.5-WS-WAS-FP0000010-part1.zip'? y
removed `8.5.5-WS-WAS-FP0000010-part1.zip'
wasadm@ngensrilinlab[WASnd8.5.5FP10] $
wasadm@ngensrilinlab[WASnd8.5.5FP10] $ ls -lrth
total 3.6M
-rw-r--r-- 1 wasadm wasgrp 370K Aug
1 2016
update_com.ibm.websphere.ND.v85_8.5.5010.20160721_0036_from_8.5.0.20120501_1108.xml
drwxr-xr-x 3 wasadm wasgrp 4.0K Aug
1 2016 atoc
-rw-r--r-- 1 wasadm wasgrp 369K Aug
1 2016
update_com.ibm.websphere.NDTRIAL.v85_8.5.5010.20160721_0036_from_8.5.0.20120501_1108.xml
-rw-r--r-- 1 wasadm wasgrp 351K Aug
1 2016
update_com.ibm.websphere.BASE.v85_8.5.5010.20160721_0036_from_8.5.0.20120501_1108.xml
-rw-r--r-- 1 wasadm wasgrp 351K Aug
1 2016
update_com.ibm.websphere.BASETRIAL.v85_8.5.5010.20160721_0036_from_8.5.0.20120501_1108.xml
-rw-r--r-- 1 wasadm wasgrp 351K Aug
1 2016
update_com.ibm.websphere.DEVELOPERS.v85_8.5.5010.20160721_0036_from_8.5.0.20120501_1108.xml
-rw-r--r-- 1 wasadm wasgrp 351K Aug
1 2016
update_com.ibm.websphere.DEVELOPERSILAN.v85_8.5.5010.20160721_0036_from_8.5.0.20120501_1108.xml
-rw-r--r-- 1 wasadm wasgrp 352K Aug
1 2016
update_com.ibm.websphere.EXPRESS.v85_8.5.5010.20160721_0036_from_8.5.0.20120501_1108.xml
-rw-r--r-- 1 wasadm wasgrp 351K Aug
1 2016
update_com.ibm.websphere.EXPRESSTRIAL.v85_8.5.5010.20160721_0036_from_8.5.0.20120501_1108.xml
-rw-r--r-- 1 wasadm wasgrp 127K Aug
1 2016
update_com.ibm.websphere.NDDMZ.v85_8.5.5010.20160721_0036_from_8.5.0.20120501_1108.xml
drwxr-xr-x 2 wasadm wasgrp 208K Aug
1 2016 files
-rw-r--r-- 1 wasadm wasgrp 127K Aug
1 2016
update_com.ibm.websphere.NDDMZTRIAL.v85_8.5.5010.20160721_0036_from_8.5.0.20120501_1108.xml
-rw-r--r-- 1 wasadm wasgrp 1.3K Aug
1 2016 repository.config
drwxr-xr-x 2 wasadm wasgrp 4.0K Aug
1 2016 plugins
drwxr-xr-x 2 wasadm wasgrp 4.0K Aug
1 2016 Offerings
drwxr-xr-x 2 wasadm wasgrp
68K Aug 1 2016 native
-rw-r--r-- 1 wasadm wasgrp 147K Aug
1 2016 repository.xml
wasadm@ngensrilinlab[WASnd8.5.5FP10] $ pwd
/IBM/websphere/dumps/WASnd8.5.5FP10
wasadm@ngensrilinlab[WASnd8.5.5FP10] $
b)
Response file to apply FP V8.5.5.10
Notes#5
The installFixes
attribute indicates whether fixes available in repositories are installed with
the product. By default, all available fixes will be installed with the
offering.
Valid values for
installFixes:
none = do not
install available fixes with the offering.
recommended =
installs all available recommended fixes with the offering.
all = installs all
available fixes with the offering.
|
wasadm@ngensrilinlab[IManger] $ cat
/IBM/websphere/dumps/IManger/WAS8.5.5.0_FP10_17Aug2017_resposeFile.xml
<?xml version="1.0" encoding="UTF-8" ?>
<agent-input clean="true"
temporary="true">
<server>
<repository
location="/IBM/websphere/dumps/WASnd8.5.5FP10" />
</server>
<install modify='false'>
<offering id='com.ibm.websphere.ND.v85'
profile='IBM WebSphere Application Server V8.5'
features='core.feature,ejbdeploy,thinclient,embeddablecontainer,com.ibm.sdk.6_64bit'
installFixes='all'/>
</install>
<profile id='IBM WebSphere Application Server V8.5'
installLocation='/IBM/websphere/WAS8.5_NEWtesting'>
<data key='eclipseLocation'
value='/IBM/websphere/WAS8.5_NEWtesting'/>
<data key='user.import.profile' value='false'/>
<data key='cic.selector.nl' value='en'/>
</profile>
</agent-input>
wasadm@ngensrilinlab[IManger] $
c)
Applying & upgrading FP WAS V8.5.5.10
wasadm@ngensrilinlab[tools] $ /IBM/websphere/dumps/IManger/tools/imcl input
/IBM/websphere/dumps/IManger/WAS8.5.5.0_FP10_17Aug2017_resposeFile.xml
-acceptLicense -sVP
Preparing IBM WebSphere Application Server Network Deployment
(100% of < 1 MB at 99 KB/sec; 0 seconds remain)
(100% of < 1 MB at 2913 KB/sec; 0 seconds remain)
(100% of < 1 MB at 107 KB/sec; 0 seconds remain)
(100% of < 1 MB at 498 KB/sec; 0 seconds remain)
(100% of < 1 MB at 2913 KB/sec; 0 seconds remain)
.
.
#Large output is archived, refer to output#5
.
.
Cleaning up saved files.
Cleaning up saved files. Cleaning up saved files.
Cleaning up saved files.
Validating eclipse configuration for IBM WebSphere Application
Server V8.5
.
Updated to com.ibm.websphere.ND.v85_8.5.5010.20160721_0036 in the
/IBM/websphere/WAS8.5_NEWtesting directory.
wasadm@ngensrilinlab[tools] $
d)
Verifying FP WAS V8.5.5.10 upgrade.
wasadm@ngensrilinlab[tools] $ /IBM/websphere/WAS8.5_NEWtesting/bin/versionInfo.sh
WVER0010I: Copyright (c) IBM Corporation 2002, 2012; All rights
reserved.
WVER0012I: VersionInfo reporter version 1.15.1.48, dated 2/8/12
--------------------------------------------------------------------------------
IBM WebSphere Product Installation Status Report
--------------------------------------------------------------------------------
Report at date and time August 17, 2017 6:10:15 PM HKT
Installation
--------------------------------------------------------------------------------
Product Directory /IBM/websphere/WAS8.5_NEWtesting
Version Directory
/IBM/websphere/WAS8.5_NEWtesting/properties/version
DTD Directory
/IBM/websphere/WAS8.5_NEWtesting/properties/version/dtd
Log Directory
/IBM/websphere/dumps/var/ibm/InstallationManager/logs
Product List
--------------------------------------------------------------------------------
ND
installed
Installed Product
--------------------------------------------------------------------------------
Name IBM WebSphere Application Server
Network Deployment
Version
8.5.5.10
ID ND
Build Level
cf101629.01
Build Date 7/21/16
Package
com.ibm.websphere.ND.v85_8.5.5010.20160721_0036
Architecture x86-64
(64 bit)
Installed Features IBM
64-bit WebSphere SDK for Java
WebSphere Application Server Full Profile
EJBDeploy tool for pre-EJB 3.0 modules
Embeddable EJB container
Stand-alone thin clients and resource adapters
--------------------------------------------------------------------------------
End Installation Status Report
--------------------------------------------------------------------------------
wasadm@ngensrilinlab[tools] $
<~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~><~>
For Appendix click on following link.
https://drive.google.com/file/d/0B-cdkAl6L6JkcHZEbHNsdng3Z1U/view?usp=sharing
For Appendix click on following link.
https://drive.google.com/file/d/0B-cdkAl6L6JkcHZEbHNsdng3Z1U/view?usp=sharing
No comments:
Post a Comment