0

我发现文档表明我需要在我的集体环境中设置一个网络服务器,但是,我无法确定正确的步骤集。想法?

4

1 回答 1

1

查看您已经尝试过的内容会有所帮助,但请考虑以下事项:

  1. 在一台或多台主机上创建两台或多台服务器并将它们加入集体。确保您的服务器是clusterMembers 和collectiveMembers。以下帖子应该有助于创建服务器并将它们加入集体: 如何在 Bluemix 中设置单元和集体

  2. /etc/hosts使用集合体中所有主机的主机名更新控制器的文件。

  3. 下载并按照本指南在控制器上生成 plugin-cfg.xml 文件: https ://developer.ibm.com/wasdev/downloads/#asset/scripts-jython-Generate_Cluster_Plugin

  4. 将生成的plugin-cfg.xml文件复制到/opt/IBM/WebSphere/HTTPServer/conf

  5. 在文件底部编辑/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
    
  6. WebSpherePluginConfig将值更改为/opt/IBM/WebSphere/HTTPServer/conf/plugin-cfg.xml

  7. 停止和启动 HTTP 服务器

    sudo ./apachectl stop
    sudo ./apachectl start
    
  8. 验证可以使用网络服务器访问应用程序<webserverIP>:80/appname

  9. 如果添加或删除应用程序,请再次生成插件。

于 2015-12-19T07:09:23.837 回答