Installing WebSphere Application Server

2 WebSphere Application Server

WebSphere Application Server 2.1 installation

2.1.1 Use imcl install WebSphere Application Server

  1. Using the following command to list the WebSphere Application Server product code included in the media pack

imcl listAvailablePackages -repositories [wasimagepath][,otherimagepath]

Examples are as follows:

imcl listAvailablePackages -repositories /tmp/was/9/base/,/tmp/was/9/jdk

Output results as follows:

com.ibm.websphere.ND.v90_9.0.0.20160526_1854
com.ibm.java.jdk.v8_8.0.3000.20160526_1317
  1. Run the following command to install WebSphere Application Server
#production_id为上条命令查到的产品ID
#production_install_path为需要将产品安装到的目录
#shared_file_path为需要将共享文件安装到的目录
#production_image_path产品介质解压到的目录
imcl install production_id[ production_id] ...\
-installationDirectory [production_install_path] \
-sharedResourcesDirectory [shared_file_path] \
-repositories [production_image_path][,production_image_path] \
-acceptLicense

Examples are as follows:

imcl install com.ibm.websphere.ND.v90_9.0.0.20160526_1854 com.ibm.java.jdk.v8_8.0.3000.20160526_1317  \
-installationDirectory /opt/IBM/WebSphere/AppServer \
-sharedResourcesDirectory /opt/IBM/IMShared \
-repositories /tmp/was/9/base/,/tmp/was/9/jdk \
-acceptLicense

Output results as follows:

Installed com.ibm.websphere.ND.v90_9.0.0.20160526_1854 to the /opt/IBM/WebSphere/AppServer directory.
Installed com.ibm.java.jdk.v8_8.0.3000.20160526_1317 to the /opt/IBM/WebSphere/AppServer directory.
  1. Run the following commands to verify the installation

versionInfo.sh

Examples are as follows:

/opt/IBM/WebSphere/AppServer/bin/versionInfo.sh

Output results as follows:

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 March 5, 2019 10:24:17 AM CST

Installation
--------------------------------------------------------------------------------
Product Directory        /opt/IBM/WebSphere/AppServer
Version Directory        /opt/IBM/WebSphere/AppServer/properties/version
DTD Directory            /opt/IBM/WebSphere/AppServer/properties/version/dtd
Log Directory            /var/ibm/InstallationManager/logs

Product List
--------------------------------------------------------------------------------
ND                       installed
JAVA8                    installed

Installed Product
--------------------------------------------------------------------------------
Name                  IBM WebSphere Application Server Network Deployment
Version               9.0.0.0
ID                    ND
Build Level           gm1621.04
Build Date            5/26/16
Package               com.ibm.websphere.ND.v90_9.0.0.20160526_1854
Architecture          x86-64 (64 bit)
Installed Features    WebSphere Application Server traditional
                     EJBDeploy tool for pre-EJB 3.0 modules
                     Embeddable EJB container
                     Stand-alone thin clients and resource adapters

Installed Product
--------------------------------------------------------------------------------
Name            IBM SDK, Java Technology Edition, Version 8
Version         8.0.3.0
ID              JAVA8
Build Level     pxa6480sr3-20160428_01
Build Date      04/28/16
Architecture    x86-64 (64 bit)

--------------------------------------------------------------------------------
End Installation Status Report
--------------------------------------------------------------------------------

At this point the installation is successful

  1. Appendix
    during installation can be used -properties cic.selector.nl=en,,zhto install additional Chinese language pack support

Guess you like

Origin blog.csdn.net/nikx/article/details/88170956