记录下在在Docker容器里安装webshpere的步骤,前提是已经安装好了docker,能够正常使用。
(1)docker安装websphere 1. 获取镜像: docker pull ibmcom/websphere-traditional:8.5.5.12-profile docker pull #是将镜像拉取下来的命令,后面跟的是镜像名以及镜像版本信息 ibmcom/websphere-traditional #websphere的镜像名 8.5.5.12-profile #镜像的版本,也就是websphere的版本
2.使用镜像生成容器并且启动容器: docker run --name websphere -h test -e UPDATE_HOSTNAME=true -p 9043:9043 -p 9443:9443 -d ibmcom/websphere-traditional:8.5.5.12-profile docker run #启动容器的命令,后面跟各种参数 + 容器镜像信息 --name websphere #指定启动的容器名为 websphere -e UPDATE_HOSTNAME=true #访问websphere的ip不是localhost时需要此参数 -p 9043:9043 #指定访问端口号 -d ibmcom/websphere-traditional:8.5.5.12-profile #后台运行该镜像生成的容器
3.生成登录的密码: docker exec websphere cat /tmp/PASSWORD docker exec #进入容器内部,访问容器 websphere #指定的容器名 cat /tmp/PASSWORD #输出容器内 /tmp/PASSWORD 文件中的内容 ,这条命令输出的内容就是用于登录的密码。
4.生成新的容器,用于用户访问: docker run --name test -h test -v $(pwd)/PASSWORD:/tmp/PASSWORD -p 9045:9043 -p 9445:9443 -d ibmcom/websphere-traditional:8.5.5.12-profile docker run #启动新的容器 -v $(pwd)/PASSWORD:/tmp/PASSWORD #将当前产生的登录密码挂在到容器内的/tmp/PASSWORD目录下
5.通过浏览器访问websphere: https://172.150.13.40:9043/ibm/console/login.do?action=secure 172.150.13.40 #当前虚拟机的ip地址(每个人的都不一样) 9043 #设定访问websphere的端口号
6.前面的步骤没出错,会进入如下登录页面
7.登录的账号和密码
账号 : wsadmin 密码 : 1+aIMDow (就是前面使用 docker exec websphere cat /tmp/PASSWORD 命令输出的内容,每个人的都不一样)