Websphere 9.0安装
配置Websphere 9.0
配置服务器
#配置服务器
#配置hosts文件
[root@websphere9 agent.installer.linux.gtk.x86_64_1.8.9003.20190204_1751]# cat /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.19.199 websphere9
上传文件、解压所需文件夹
#上传WAS9.0软件
#WAS9.0
[root@websphere9 software]# pwd
/usr/IBM/software
[root@websphere9 software]# ll
total 4736476
-rw-r--r--. 1 root root 4850151000 Jul 27 12:12 WAS9.0.zip
[root@websphere9 software]# unzip WAS9.0.zip
[root@websphere9 software]# ll
total 4736476
drwxr-xr-x. 5 root root 97 Nov 21 2019 WAS9.0.0.10
-rw-r--r--. 1 root root 4850151000 Jul 27 12:12 WAS9.0.zip
#目录结构
[root@websphere9 WAS9.0.0.10]# ll WAS9.0.0.10/
total 2679984
-rw-r--r--. 1 root root 1110423461 Nov 21 2019 9.0.0-WS-WAS-FP010.zip
drwxr-xr-x. 2 root root 68 Nov 21 2019 IHS
drwxr-xr-x. 2 root root 4096 Nov 21 2019 IM
drwxr-xr-x. 2 root root 222 Nov 21 2019 sdk
-rw-r--r--. 1 root root 1633871835 Nov 21 2019 WAS_ND_V9.0_MP_ML.zip
#解压所有目录
unzip 9.0.0-WS-WAS-FP010.zip -d 9.0.0-WS-WAS-FP010
unzip WAS_ND_V9.0_MP_ML.zip -d WAS_ND_V9.0_MP_ML
cd IHS/
unzip was.repo.9000.ihs.zip -d was.repo.9000.ihs
unzip was.repo.9000.plugins.zip -d was.repo.9000.plugins
cd ../IM/
unzip agent.installer.linux.gtk.x86_64_1.8.9003.20190204_1751.zip -d agent.installer.linux.gtk.x86_64_1.8.9003.20190204_1751
cd ../sdk/
unzip ibm-java-sdk-8.0-5.30-linux-x64-installmgr.zip -d ibm-java-sdk-8.0-5.30-linux-x64-installmgr
#tree
[root@websphere9 WAS9.0.0.10]# tree -L 2
.
├── 9.0.0-WS-WAS-FP010
│ ├── atoc
│ ├── files
│ ├── native
│ ├── Offerings
│ ├── plugins
│ ├── repository.config
│ ├── repository.xml
│ ├── update_com.ibm.websphere.BASE.v90_9.0.10.20181119_1807_from_9.0.0.20160526_1854.xml
│ ├── update_com.ibm.websphere.ILAN.v90_9.0.10.20181119_1807_from_9.0.0.20160526_1854.xml
│ ├── update_com.ibm.websphere.NDDMZ.v90_9.0.10.20181119_1807_from_9.0.0.20160526_1854.xml
│ └── update_com.ibm.websphere.ND.v90_9.0.10.20181119_1807_from_9.0.0.20160526_1854.xml
├── 9.0.0-WS-WAS-FP010.zip
├── IHS
│ ├── was.repo.9000.ihs
│ ├── was.repo.9000.ihs.zip
│ ├── was.repo.9000.plugins
│ └── was.repo.9000.plugins.zip
├── IM
│ ├── agent.installer.aix.gtk.ppc_1.8.9003.20190204_1751.zip
│ ├── agent.installer.linux.gtk.x86_1.8.9003.20190204_1751.zip
│ ├── agent.installer.linux.gtk.x86_64_1.8.9003.20190204_1751
│ ├── agent.installer.linux.gtk.x86_64_1.8.9003.20190204_1751.zip
│ ├── agent.installer.win32.win32.x86_1.8.9003.20190204_1751.zip
│ └── agent.installer.win32.win32.x86_64_1.8.9003.20190204_1751.zip
├── sdk
│ ├── ibm-java-sdk-8.0-5.30-aix-ppc64-installmgr.zip
│ ├── ibm-java-sdk-8.0-5.30-linux-ppc64-installmgr.zip
│ ├── ibm-java-sdk-8.0-5.30-linux-x64-installmgr
│ ├── ibm-java-sdk-8.0-5.30-linux-x64-installmgr.zip
│ └── ibm-java-sdk-8.0-5.30-win-x64-installmgr.zip
├── WAS_ND_V9.0_MP_ML
│ ├── atoc
│ ├── Copyright.txt
│ ├── files
│ ├── lafiles
│ ├── native
│ ├── Offerings
│ ├── plugins
│ ├── readme
│ ├── repository.config
│ └── repository.xml
└── WAS_ND_V9.0_MP_ML.zip
安装IM、配置repor
#启动图形界面-主机界面忽略
#xxx.xxx.xxx.xxx表示Xserver监听地址
export DISPLAY=xxx.xxx.xxx.xxx:0.0
xhost +
点击是
#进入IM 安装
cd /usr/IBM/software/WAS9.0.0.10/IM/agent.installer.linux.gtk.x86_64_1.8.9003.20190204_1751
./install
#
[root@websphere9 eclipse]# pwd
/usr/IBM/InstallationManager/eclipse
[root@websphere9 eclipse]# ./launcher
#配置Profile
[root@websphere9 ProfileManagement]# pwd
/opt/IBM/WebSphere/AppServer/bin/ProfileManagement
[root@websphere9 ProfileManagement]# export DISPLAY=10.5.195.235:0.0
[root@websphere9 ProfileManagement]# xhost +
[root@websphere9 ProfileManagement]# ./pmt.sh
#启动
./usr/IBM/WebSphere/AppServer/profiles/Dmgr01/bin/startManager.sh
./usr/IBM/WebSphere/AppServer/profiles/AppSrv01/bin/startNode.sh
#访问地址
https://192.168.19.199:9043/ibm/console/
#版本
集成解决方案控制台, 9.0.0.10
构建号: cf101846.03
构建日期: 11/19/18
---------------------------------------
LICENSED MATERIALS PROPERTY OF IBM
5724-J08, 5724-I63, 5724-H88,5724-H89, 5655-W65 © Copyright International Business Machines Corp. 1996, 2012
#访问服务
http://192.168.19.199:9080/testIP
IP: 192.168.19.199
hostName: websphere9





























配置自定profile











创建server






部署应用





浙公网安备 33010602011771号