我发现文档表明我需要在我的集体环境中设置一个网络服务器,但是,我无法确定正确的步骤集。想法?
1 回答
查看您已经尝试过的内容会有所帮助,但请考虑以下事项:
在一台或多台主机上创建两台或多台服务器并将它们加入集体。确保您的服务器是clusterMembers 和collectiveMembers。以下帖子应该有助于创建服务器并将它们加入集体: 如何在 Bluemix 中设置单元和集体
/etc/hosts
使用集合体中所有主机的主机名更新控制器的文件。下载并按照本指南在控制器上生成 plugin-cfg.xml 文件: https ://developer.ibm.com/wasdev/downloads/#asset/scripts-jython-Generate_Cluster_Plugin
将生成的
plugin-cfg.xml
文件复制到/opt/IBM/WebSphere/HTTPServer/conf
在文件底部编辑
/opt/IBM/WebSphere/HTTPServer/conf/httpd.conf
并取消注释这两行:LoadModule was_ap22_module /opt/IBM/WebSphere/Plugins/bin/64bits/mod_was_ap22_http.so WebSpherePluginConfig /opt/IBM/WebSphere/Profiles/Liberty/servers/controller/pluginConfig/myLibertyCluster-plugin-cfg.xml
WebSpherePluginConfig
将值更改为/opt/IBM/WebSphere/HTTPServer/conf/plugin-cfg.xml
停止和启动 HTTP 服务器
sudo ./apachectl stop sudo ./apachectl start
验证可以使用网络服务器访问应用程序
<webserverIP>:80/appname
如果添加或删除应用程序,请再次生成插件。