如何在centos上安装部署was8.5
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在centos上安装部署was8.5相关的知识,希望对你有一定的参考价值。
最近在AIX上面安装WAS服务,本来8.0以后的版本都是要在Installation Manager上面安装的,而且简单方便,但是AIX并没有图形界面,需要安装CDE,但是无奈我安装了之后启动,但是却无法用Xmanager连接,一直都是花屏,所以想请教下,WAS8.5如何用命令行的方式直接安装,或者可以指导下CDE的启动注意事项。 下面是社区会员的建议: niuph你要没用过静默安装的话,那静默安装对你就比较麻烦,安装前需要先把IM、WAS、IHS的安装配置xml文件修改了,然后再执行静默安装命令,建议你去官网上查一下。 fhqsse220试试VNC远程安装吧,应该比Xmanager好配置。 aad两种方式:1.iim console模式安装,不需要gui;2.还可以iim 静默方式安装 imclinput $RESPFILE –acceptLicense 参考技术A 求分享centos的was8.5安装包Centos7下IBM WAS Liberty轻量化中间件安装部署教程
1、准备工作
OS:CentOS Linux release 7.5.1804 (Core)
下载地址:
https://developer.ibm.com/wasdev/downloads/#asset/runtimes-wlp-javaee8
JDK
官网下载安装jdk1.8
Nginx
http://nginx.org/en/download.html
2、安装Liberty
安装JDK
[[email protected] ~]# rpm -ivh jdk-8u121-linux-x64.rpm
Preparing... ################################# [100%]
Updating / installing...
1:jdk1.8.0_121-2000:1.8.0_121-fcs ################################# [100%]
Unpacking JAR files...
tools.jar...
plugin.jar...
javaws.jar...
deploy.jar...
rt.jar...
jsse.jar...
charsets.jar...
localedata.jar...
解压下载的Liberty压缩包到安装目录
[[email protected] ~]# unzip wlp-javaee8-19.0.0.2.zip -d /usr/local/was
启动默认实例
[[email protected] ~]# /usr/local/was/wlp/bin/server start
Starting server defaultServer.
Server defaultServer started with process ID 2967.
启动成功,但是现在还访问不了,因为默认监听在127.0.0.1 的9080端口,所以需要安装个nginx反向代理
3、安装nginx
下载nginx源码包,编译安装
先安装依赖
[[email protected] nginx-1.14.2]# yum install -y gcc-c++ pcre-devel zlib-devel
编译安装
[[email protected] nginx-1.14.2]# ./configure --prefix=/usr/local/nginx && make && make install
设置反向代理
[[email protected] nginx-1.14.2]# vim /usr/local/nginx/conf/nginx.conf
.
location / {
root html;
index index.html index.htm;
#location里面增加一行
proxy_pass http://127.0.0.1:9080;
}
启动nginx
[[email protected] was]# /usr/local/nginx/sbin/nginx
打开测试,起来了
4、发布应用程序
这里以jenkins为例
先停止Liberty
[[email protected] was]# /usr/local/was/wlp/bin/server stop
把war包放到defaultServer下的dropins目录下,启动Liberty即可
[[email protected] was]# mv jenkins.war /usr/local/was/wlp/usr/servers/defaultServer/dropins/
[[email protected] was]# /usr/local/was/wlp/bin/server start
Starting server defaultServer.
Server defaultServer started with process ID 12275.
启动成功,使用http://192.168.1.14/项目名 即可访问
完成
以上是关于如何在centos上安装部署was8.5的主要内容,如果未能解决你的问题,请参考以下文章