WebSphere安装部署手册
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
WebSphere安装手册
1.安装IBM Installation Manager
需要安装IBM Installation Manager的服务器为tims1 、tims2、tims3、tims4。
1.1.安装
以root用户登录。
(1)将安装包agent.installer.linux.gtk.x86_64_1.6.2000.20130301_2248.zip复制或上传到/WAS 目录下。
(2)进入WAS目录,解压IBM Installation Manager的安装包。
[root@tims1 ~]#cd /WAS
[root@tims1 WAS]# unzip agent.installer.linux.gtk.x86_64_1.6.2000.20130301_2248.zip -d installer
(3)安装。
[root@tims1 WAS]# cd installer
[root@tims1 installer]# ./install
这时候,将会出现安装的图形界面。
点击Next。
选中I acceptthe terms in the license agreement,点击Next。
这里显示了默认的安装目录,不用更改,点击Next。
确认信息无误后,点击Install。
等待一会,安装完成后将显示如下界面。
点击Restart Installation Manager,重启Installation Manager。
1.2.启动
[root@tims1 ~]#cd /opt/IBM/InstallationManager/eclipse
[root@tims1 eclipse]#./IBMIM
这时候,将出现IBM Installation Manager的图形界面。
1.3.停止
在图形界面上直接关闭窗口即可。
2.安装IBM HTTP Server
需要安装IBM HTTP Server的服务器为tims1。
需要先安装好IBMInstallation Manager。
2.1.安装
以root用户登录。
(1)将安装包unzip was.repo.8550.ihs.ilan_all.zip复制或上传到/WAS目录下。
(2)进入WAS目录,解压IBM Http Server的安装包。
[root@tims1 ~]#cd /WAS
[root@tims1 WAS]# unzip was.repo.8550.ihs.ilan_all.zip -d was.repo.8550.ihs.ilan_all (3)打开IBM Installation Manager界面,开始安装。
进入菜单File –Preferences…
点击Add Reposit ory…,添加存储库。
点击Browse,弹出选择存储库配置文件的窗口。
在这里选择/WAS/was.repo.8550.ihs.ilan_all/repository.config,点击OK。
确认路径正确后,点击OK。
这样,IBM Installation Manager的存储库将显示在Respositories区域内。
点击OK。
点击Install。
请等待一小会。
界面中显示了IBM HTTP Server的安装包,选中它,点击Next。
选中I acceptthe terms in the license agreement,点击Next。
默认的共享资源路径/opt/IBM/IMShared不需要修改,点击Next。
选中Create a new package group,默认的安装目录/opt/IBM/HTTPServer不需要修改,点击Next。
这里显示了两个IBM HTTP Server,一个是32位的,一个是64位的。
64位操作系统请选择64位的IBM HTTP Server。
点击Next。
默认的HTTP端口是80,一般不需要修改。
如果80端口号被占用,可修改成其他端口号。
点击Next。
确认信息无误后,点击Install。
等待一会,安装完成后将显示如下界面。
点击Finish,关闭窗口。
2.2.启动
进入/opt/IBM/HTTPServer/bin目录
[root@tims1~]cd /opt/IBM/HTTPServer/bin
查看一下httpd依赖的动态库
[root@tims1 bin]# ldd httpd
linux-vdso.so.1 => (0x00007fff2e467000)
libm.so.6 => /lib64/libm.so.6 (0x000000350a200000)
libaprutil-1.so.0 => /usr/lib64/libaprutil-1.so.0 (0x00007f84f65f5000) librt.so.1 => /lib64/librt.so.1 (0x0000003509e00000)
libcrypt.so.1 => /lib64/libcrypt.so.1 (0x0000003515600000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x0000003509a00000)
libdl.so.2 => /lib64/libdl.so.2 (0x0000003509200000)
libexpat.so.0 => not found
libapr-1.so.0 => /usr/lib64/libapr-1.so.0 (0x00007f84f63c7000)
libc.so.6 => /lib64/libc.so.6 (0x0000003509600000)
libuuid.so.1 => /lib64/libuuid.so.1 (0x0000003514200000)
libexpat.so.1 => /lib64/libexpat.so.1 (0x000000350d600000)
libdb-4.7.so => /lib64/libdb-4.7.so (0x0000003515200000)
/lib64/ld-linux-x86-64.so.2 (0x0000003508e00000)
libfreebl3.so => /lib64/libfreebl3.so (0x0000003514e00000)
如果出现libexpat.so.0 => not found,那么创建一个指向/lib64/libexpat.so.1的链接
[root@tims1 bin]# ln -s /lib64/libexpat.so.1 /lib64/libexpat.so.0
再次查看一下httpd依赖的动态库,这里显示所有的动态库都可以找到了。
[root@tims1 bin]# ldd httpd
linux-vdso.so.1 => (0x00007fffb29ff000)
libm.so.6 => /lib64/libm.so.6 (0x000000350a200000)
libaprutil-1.so.0 => /usr/lib64/libaprutil-1.so.0 (0x00007f87ab1ae000)
librt.so.1 => /lib64/librt.so.1 (0x0000003509e00000)
libcrypt.so.1 => /lib64/libcrypt.so.1 (0x0000003515600000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x0000003509a00000)
libdl.so.2 => /lib64/libdl.so.2 (0x0000003509200000)
libexpat.so.0 => /lib64/libexpat.so.0 (0x000000350d600000)
libapr-1.so.0 => /usr/lib64/libapr-1.so.0 (0x00007f87aaf80000)
libc.so.6 => /lib64/libc.so.6 (0x0000003509600000)
libuuid.so.1 => /lib64/libuuid.so.1 (0x0000003514200000)
libdb-4.7.so => /lib64/libdb-4.7.so (0x0000003515200000)
/lib64/ld-linux-x86-64.so.2 (0x0000003508e00000)
libfreebl3.so => /lib64/libfreebl3.so (0x0000003514e00000)
启动
[root@tims1 bin]# ./apachectl start
启动后系统将出现以下进程。
[root@tims1 bin]# ps -ef|grep httpd
root 26063 1 0 05:29 ? 00:00:00 /opt/IBM/HTTPServer/bin/httpd -d /opt/IBM/HTTPServer -k start
nobody 26064 26063 0 05:29 ? 00:00:00 /opt/IBM/HTTPServer/bin/httpd -d /opt/IBM/HTTPServer -k start
nobody 26065 26063 0 05:29 ? 00:00:00 /opt/IBM/HTTPServer/bin/httpd -d /opt/IBM/HTTPServer -k start
nobody 26066 26063 0 05:29 ? 00:00:00 /opt/IBM/HTTPServer/bin/httpd -d /opt/IBM/HTTPServer -k start
root 26095 2528 0 05:29 pts/0 00:00:00 grep httpd
启动后,在浏览器中输入http://localhost或http://127.0.0.1(如果是在其他机器上访问,需要将localhost或127.0.0.1换成IBM HTTP Server的IP地址),将显示IBM HTTP Server的欢迎页面,这说明启动正常了。
2.3.停止
[root@tims1 ~]cd /opt/IBM/HTTPServer/bin
[root@tims1 bin]# ./apachectl stop
3.安装Web Server Plugin-ins
需要安装Web Server Plugin-ins的服务器为tims1。
需要先安装好IBMInstallation Manager。
以root用户登录。
(1)将安装包was.repo.8550.plg.ilan_all.zip复制或上传到/WAS目录下。
(2)进入WAS目录,解压安装包。
[root@tims1 ~]#cd /WAS
[root@tims1 WAS]# unzip was.repo.8550.plg.ilan_all.zip -d was.repo.8550.plg.ilan_all (3)打开IBM Installation Manager界面。
进入菜单File –Preferences…
点击Add Reposit ory…,添加存储库。
点击Browse,弹出选择存储库配置文件的窗口。
在这里选择/WAS/was.repo.8550.plg.ilan_all/repository.config,点击OK。
确认路径正确后,点击OK。
这样,IBM Installation Manager的存储库将显示在Respositories区域内。
点击OK。
点击Install。
请等待一小会。
界面中显示了Web Server Plug-ins的的安装包,选中它,点击Next。
选中I acceptthe terms in the license agreement,点击Next。
选中Create a new package group,默认的安装目录/opt/IBM/WebSphere/Plugins不需要修改,点击Next。
这里显示了两个IBM WebSphere SDK for Java,一个是32位的,一个是64位的。
64位操作系统请选择64位的IBM HTTP Server。
点击Next。
确认信息无误后,点击Install。
等待一会,安装完成后将显示如下界面。
点击Finish,关闭窗口。
4.安装WebSphere Application Server
需要安装WebSphere Application Server的服务器为tims2、tims3、tims4。
需要先安装好IBMInstallation Manager。
以root用户登录。
(1)将安装包WASND_v8.5.5_1of3.zip、WASND_v8.5.5_2of3.zip、WASND_v8.5.5_3of3.zip复制或上传到/WAS目录下。
(2)进入WAS目录,解压安装包。
[root@tims2 ~]#cd /WAS
[root@tims2 WAS]# unzip WASND_v8.5.5_1of3.zip -d WASND_v8.5.5_1of3
[root@tims2 WAS]# unzip WASND_v8.5.5_2of3.zip -d WASND_v8.5.5_2of3
[root@tims2 WAS]# unzip WASND_v8.5.5_3of3.zip -d WASND_v8.5.5_3of3
(3)打开IBM Installation Manager界面。
进入菜单File –Preferences…
点击Add Reposit ory…,添加存储库。
点击Browse,弹出选择存储库配置文件的窗口。
在这里选择/WAS/WASND_v8.5.5_1of3/repository.config,点击OK。
确认路径正确后,点击OK。
这样,WebSphere Application Server的存储库将显示在Respositories区域内。
点击OK。
点击Install。
请等待一小会。
界面中显示了WebSphere Application Server的安装包,选中它,点击Next。
选中I acceptthe terms in the license agreement,点击Next。
默认的共享资源目录/opt/IBM/IMShared不需要修改,点击Next。
选中Create a new package group,默认的安装目录/opt/IBM/WebSphere/AppServer不需要修
改,点击Next。
这里显示了支持的语言,默认选中了English,可以选中Simplified Chinese添加简体中文语言包。
点击Next。
EJB的三个选项不需要选中,Sample applications也不需要选中;对于64位的操作系统,最后的IBM WebSphere SDK请选择64位的。
点击Next。
这里要求插入盘2,盘2的目录是/WAS/WASND_v8.5.5_2of3/disk2,请输入或通过Browse选择,然后点击OK。
这里要求插入盘3,盘3的目录是/WAS/WASND_v8.5.5_3of3/disk3,请输入或通过Browse选择,然后点击OK。
等待一会,安装完成后将显示如下界面。
选择None,点击Finish,关闭窗口。
5.创建部署管理器
需要创建部署管理器的服务器为tims2。
需要先安装好IBM WebSphere Application Server。
5.1.创建部署管理器
以root用户登录。
打开概要文件管理工具。
打开方式1:
菜单:Applications –IBM WebSphere – IBM WebSphere Application Server v8.5 – Tools – Profile Management Tool
打开方式2:
[root@tims2 ~]# cd /opt/IBM/WebSphere/AppServer/bin/ProfileManagement
[root@tims2 ProfileManagement]# ./pmt.sh
点击Create。
选择Management,点击Next。
选择Deployment manager,点击Next。
选择Advanced profile creatiojn,点击Next。
选中Deploy the administrative console (recommended),点击Next。
默认的概要文件名称Dmgr01和目录/opt/IBM/WebSphere/AppServer/profiles/Dmgr01不需要修改,点击Next。
输入节点名称tims2CellManage01,主机名称tims2,单元名称tims2Cell01,点击Next。
选中Enable administrative security,输入用户名和密码。
这个用户名和密码由安装者自己确定,需要牢记。
点击Next。
选中Create a new default personal certificate,点击Next。
将两个Expiration period in years都设置为15,其他不变,点击Next。
各端口号不需要修改,点击Next。
不要选中Run the deployment manager process as a Linux service,直接点击Next。
确认信息无误后,点击Create。
等待一会。
选中Launch the First steps console,点击Finish。
点击Installation verification验证。
上面出现了The Installation Verification Tool verification succeeded说明安装成功了。
这时候,在浏览器里输入https://localhost:9043/ibm/console/,将会出现管理控制台的登录页面。
输入前面指定的用户名和密码即可登录。
5.2.启动部署管理器
[root@tims2 ~]# cd /opt/IBM/WebSphere/AppServer/profiles/Dmgr01/bin
[root@tims2 bin]# ./startManager.sh
ADMU0116I: Tool information is being logged in file
/opt/IBM/WebSphere/AppServer/profiles/Dmgr01/logs/dmgr/startServer.log ADMU0128I: Starting tool with the Dmgr01 profile
ADMU3100I: Reading configuration for server: dmgr
ADMU3200I: Server launched. Waiting for initialization status.
ADMU3000I: Server dmgr open for e-business; process id is 4387
5.3.停止部署管理器
[root@tims2 ~]# cd /opt/IBM/WebSphere/AppServer/profiles/Dmgr01/bin
[root@tims2 bin]# ./stopManager.sh -username wasadmin -password 123456
ADMU0116I: Tool information is being logged in file
/opt/IBM/WebSphere/AppServer/profiles/Dmgr01/logs/dmgr/stopServer.log ADMU0128I: Starting tool with the Dmgr01 profile
ADMU3100I: Reading configuration for server: dmgr
ADMU3201I: Server stop request issued. Waiting for stop status.
ADMU4000I: Server dmgr stop completed.
执行stopManager.sh时要指定用户名和密码,这个用户名和密码是前面安装过程中输入的。