配置websphere httpd.conf和plugin-cfg.xml
我有一个应用程序部署在带有 ibm http 服务器的 websphere 应用程序服务器上。我想更改域名。我发现 httpd.conf 文件中需要进行更改。在服务器名称标签中。还需要更改plugin-cfg.xml。我应该如何修改这些文件。以及如何反映更改。 还有其他我必须更改域名的文件/属性文件吗?
谢谢
i have an application which is deployed on websphere application server with ibm http server.I want to change the domain name.I have figured out that changes will be required in httpd.conf file. in the servername tag.also plugin-cfg.xml needs to be changed.How should i modify these files.and how will the changes be reflected.
And are there any other files/properties files where i have to chnage the domain name.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不想手动编辑plugin-cfg.xml(除非在极少数情况下)。其中的主机名来自为 WebSphere 虚拟主机定义的别名。
默认情况下,这些通常具有 *:80,因此更改服务器域名根本不需要更改。例如:
如果您的应用程序正在使用的 WebSphere 虚拟主机确实指定了具有特定域名的别名,那么您只需更改那里的域名即可。
You don't want to edit plugin-cfg.xml manually (except in very rare cases). The hostnames in there come from the Aliases defined for the WebSphere Virtual Hosts.
By default, those usually have *:80, so changing the server domain name would require no changes at all. For instance:
If the WebSphere Virtual Host that your application is using does specify an Alias with a particular domain name, you just change the domain name there.