安装包准备

  1. 下载压缩包.可以从IBM官网下载或者百度网盘, 链接: 百度网盘-链接不存在 提取码: h907
  2. 将压缩包上传到linux服务器.
  • 使用powershell + scp方式
###    提速参数          本地was包      linux用户  linux IP      上传位置scp -r -c aes192-cbc  .\WAS9.0.zip    youruser@192.168.1.172:/home/youruser
  • 使用SecureCRT上传

参看 SecureCRT上传超过4G的文件 - 全力兔子 - 博客园

  1. ssh登录到远程服务器.
ssh youruser@192.168.1.172
  1. 解压

需要解压如下目录中的压缩文件

#安装程序
/home/youruser/my_was_install/WAS9.0.0.10/IM/agent.installer.linux.gtk.x86_64_1.8.9003.20190204_1751.zip
#repository.config 依赖需要
/home/youruser/my_was_install/WAS9.0.0.10/9.0.0-WS-WAS-FP010.zip
/home/youruser/my_was_install/WAS9.0.0.10/WAS_ND_V9.0_MP_ML.zip
/home/youruser/my_was_install/WAS9.0.0.10/IHS/was.repo.9000.ihs.zip
/home/youruser/my_was_install/WAS9.0.0.10/IHS/was.repo.9000.plugins.zip
/home/youruser/my_was_install/WAS9.0.0.10/sdk/ibm-java-sdk-8.0-5.30-linux-x64-installmgr.zip

操作.

#进入安装解压目录
cd my_was_install/
#解压was9.0
unzip WAS9.0.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 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 ../IHS/
unzip was.repo.9000.ihs.zip -d was.repo.9000.ihs
unzip was.repo.9000.plugins.zip -d was.repo.9000.plugins
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

#打印2层结构
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

5.安装WAS

执行安装. 如果没有安装图形库.请安装图形库

sudo /home/youruser/my_was_install/WAS9.0.0.10/IM/agent.installer.linux.gtk.x86_64_1.8.9003.20190204_1751/install

按图片顺序执行

  1. 创建概要文件
### 分配执行权限
chmod -R 755 /opt/IBM/*
### 切换目录
cd /opt/IBM/WebSphere/AppServer/bin/
### 创建Dmgr概要文件
sudo ./manageprofiles.sh -create -templatePath ../profileTemplates/dmgr -profileName Dmgr01 -profilePath ../profiles/Dmgr01### 创建App01概要文件
sudo ./manageprofiles.sh -create -templatePath ../profileTemplates/default -profileName App01 -profilePath ../profiles/App01

如果需要删除概要文件时执行

# 打印profiles
./manageprofiles.sh -listProfiles
cd /opt/IBM/WebSphere/AppServer/bin/
/manageprofiles.sh -delete -profileName Dmgr01
### 提示成功后再到 profiles 文件夹下手工将剩下的概要文件目录删除即可

相关配置

vim /etc/security/limits.d/was.conf
#内容为下面4行.保存重启.
*       soft    nofile  65535
*       hard    nofile  65535
*       soft    core    65535
*       hard    core    65535# ~/.bash_profile 中文设置
export LANG=zh_CN.UTF-8# 启动过程
ulimit -c 10240
ulimit -n 65535
ulimit -u 10240
export LANG=zh_CN.gb2312
/IBM/WebSphere/AppServer/profiles/Dmgr01/bin/startManager.sh
/IBM/WebSphere/AppServer/profiles/App01/bin/startNode.sh
/IBM/WebSphere/AppServer/profiles/App01/bin/startServer.sh master
/IBM/WebSphere/AppServer/profiles/App01/bin/startServer.sh ncMem01 &
/IBM/WebSphere/AppServer/profiles/App01/bin/startServer.sh ncMem02 &
/IBM/HTTPServer/bin/apachectl -k start
/IBM/WebSphere/AppServer/profiles/App01/bin/startServer.sh ncMem03 &
/IBM/WebSphere/AppServer/profiles/App01/bin/startServer.sh ncMem04 &
/IBM/WebSphere/AppServer/profiles/App01/bin/startServer.sh ncMem05 &
/IBM/WebSphere/AppServer/profiles/App01/bin/startServer.sh ncMem06 &
/IBM/WebSphere/AppServer/profiles/App01/bin/startServer.sh ncMem07 &
/IBM/WebSphere/AppServer/profiles/App01/bin/startServer.sh ncMem08 &# 关闭过程
ulimit -n 65535
ulimit -u 10240
ulimit -c 10240
/IBM/HTTPServer/bin/apachectl -k stop
/IBM/WebSphere/AppServer/profiles/App01/bin/stopServer.sh ncMem01
/IBM/WebSphere/AppServer/profiles/App01/bin/stopServer.sh ncMem02
/IBM/WebSphere/AppServer/profiles/App01/bin/stopServer.sh ncMem03
/IBM/WebSphere/AppServer/profiles/App01/bin/stopServer.sh ncMem04
/IBM/WebSphere/AppServer/profiles/App01/bin/stopServer.sh ncMem05
/IBM/WebSphere/AppServer/profiles/App01/bin/stopServer.sh ncMem06
/IBM/WebSphere/AppServer/profiles/App01/bin/stopServer.sh ncMem07
/IBM/WebSphere/AppServer/profiles/App01/bin/stopServer.sh ncMem08
/IBM/WebSphere/AppServer/profiles/App01/bin/stopServer.sh master
/IBM/WebSphere/AppServer/profiles/App01/bin/stopNode.sh
/IBM/WebSphere/AppServer/profiles/Dmgr01/bin/stopManager.sh

CentOS7.5 中 WAS9.0 安装相关推荐

  1. Openstack : 17、在vmware的centos7虚拟机中通过packstack安装openstack queen版本

    目标: 1研究核心组件nova,neutron,cinder,ironic原理 2安装openstack queen版本 零.环境 1)win10中安装VMware-workstation-full- ...

  2. Win7中IIS7.0安装及ASP环境配置

    打开控制面板中"程序": "程序"中"打开或关闭Windows功能": 如图,安装IIS7时需要选择要使用的功能模块: IIS7安装完成之后 ...

  3. CentOS7.2中NFS1.3 安装

    NFS(network file system)网络文件系统,类似Windows中的文件夹共享,如下有三台机器A, B, C,它们需要访问同一个目录,目录中都是图片,传统的做法是把这些图片分别放到A, ...

  4. CentOS7.X中使用yum安装nginx完全教程

    nginx官方文档说明:http://nginx.org/en/linux_packages.html#RHEL-CentOS 一.安装前准备 yum install yum-utils 二.添加源 ...

  5. CentOS7.X中使用yum安装nginx的方法

    nginx官方文档说明:http://nginx.org/en/linux_packages.html#RHEL-CentOS 一.安装前准备: yum install yum-utils 二.添加源 ...

  6. Centos7/8中Gearman的安装与使用

    Gearman的安装 Gearman的官网是http://gearman.org/ 1.gearman工作原理 Gearman 服务有很多要素使得它不仅仅是一种提交和共享工作的方式, 但是主要的系统只 ...

  7. MySQL 8.0 安装部署3个注意事项

    墨墨导读:本文分享实际案例中MySQL8.0安装部署时最典型的3个问题,希望对大家有帮助. MySQL 8.0 2016年首次发布,2018年GA版本发布也已经4年多的历程,最新版本已经到8.0.21 ...

  8. 基于【CentOS-7+ Ambari 2.7.0 + HDP 3.0】搭建HAWQ数据仓库01 —— 准备环境,搭建本地仓库,安装ambari...

    一.集群软硬件环境准备: 操作系统:  centos 7 x86_64.1804 Ambari版本:2.7.0 HDP版本:3.0.0 HAWQ版本:2.3.0 5台PC作为工作站: ep-bd01 ...

  9. CentOS7.2中安装rabbitmq

    关于虚拟机中如何安装CentOS7,在我这个文章中http://blog.csdn.net/junshangshui/article/details/79368111 下载erlang,因为rabbi ...

最新文章

  1. Java虚拟机字节码指令概述
  2. Linux vms windows,Windows、Windows NT、DOS、VMS、Linux都是微机上用的操作系统。
  3. php 对象转换成数组,PHP把对象转换为数组的问题
  4. Javascript 已被弃用的或删除的特性(V客学院知识分享)
  5. java笔记之字符串,字符串数组,ListString的相互转换
  6. 分享按键精灵中使用大漠插件做后台脚本
  7. 6-2 某半导体存储器容量为16Kx8位,可选RAM芯片容量为4Kx4/片。地址总线A15~A0(低),双向数据线D7~D0(低),由R/W线控制读/写。请设计并画出该存储器的逻辑图,注明地址分配..
  8. 微信小程序开发资源汇总
  9. python 生成式 生成器
  10. IAST 技术进阶系列(二):全场景多核驱动
  11. flac文件如何转换成mp3
  12. CCF试题 201903-2 二十四点解析
  13. 计算机防勒索病毒需求分析
  14. C# NPOI 和 CSV 导出Excel 功能实现
  15. 制作京东快递查询 css制作三角形
  16. 2019 中国AI/ MR十大新闻:梦想照进现实!
  17. gspca 摄像头驱动的移植(ZC3XX)
  18. 华为ensp联动Wmware虚拟机Openstack平台实现Vlan网络模式
  19. 3D,点云分割,不要割个寂寞
  20. 2021年最佳知识库软件指南

热门文章

  1. 格式工厂使用之去除水印
  2. 2015春计算机应用技术基础,《计算机应用技术基础》.doc
  3. 恐造成下一个“千年虫”的闰秒,遭科技巨头们联合抵制
  4. LM3S6911 GPIO操作
  5. 美国教授如何判别申请的学生是否有潜力(Johnny翻译)
  6. 两种登录方式的信息显示
  7. php优秀表格样式,用html和css代码实现各种表格样式的总结
  8. 4.4 集成运放的性能指标及低频等效电路
  9. 【大数据】大数据学习路线
  10. Laravel - JWT登录与验证