在 Websphere 应用程序服务器上禁用 SSL

发布于 2024-07-10 07:37:51 字数 76 浏览 3 评论 0原文

有没有办法在 WAS 上禁用 SSL? 因此,您只需使用用户名和密码即可登录。 这与禁用全球安全无关吗?

干杯

Is there a way to disable SSL on WAS? So you can just log on using a username and password. That isnt tied to disabling the Global Security?

Cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风蛊 2024-07-17 07:37:51

首先,应用程序的登录部分与您用于访问应用程序的协议无关,例如您可以使用登录对话框(表单、http 身份验证...等),使用“正常”http 或 http over SSL(如果应用程序不仅仅在内部使用,则首选 SSL,即使是,我也会考虑使用 SSL)。

在 WebSphere 中,您将应用程序部署在 虚拟主机< /a>. 虚拟主机是可以访问您的应用程序的主机名和端口(称为主机别名)的集合。 因此,为了获得您想要的行为,我将创建一个新的虚拟主机(描述适用于 6.1 中的 WebSphere 管理控制台应用程序):

Environment > Virtual Host > New

为其指定一个描述性名称,例如 http_only。 然后您可以:

Environment > Virtual Host > http_only > Host Aliases > New

添加主机名或星号(“*”,不带引号)和端口号(在本例中为 http 端口。下一步是更改应用程序绑定的虚拟主机:

Applications > Enterprise Applications > app_name > Virtual hosts

有下拉列表您可以从中选择虚拟主机并保存后,该应用程序应该只能通过 http 访问。

First of all, the login part of the application has nothing to do with the protocol you use to reach your application, e.g. you can use a login dialog (forms, http auth... etc), with 'normal' http or http over SSL (SSL being preferred if the app is not inhouse use only, even if it is, I would think about using SSL).

In WebSphere you deploy your application on a Virtual Host. A virtual host is a collection of host names and ports (called host aliases) from which your application should be reachable. So to get the behaviour you want, I would create a new virtual host (description is for the WebSphere Admin Console Application in 6.1):

Environment > Virtual Host > New

Give it a descriptive name, like http_only. Afterwards you do:

Environment > Virtual Host > http_only > Host Aliases > New

There you add a host name or a asterisk ('*', without the quotes) and a port number (in this case the port for http. Next is changing the virtual host your application is bound on:

Applications > Enterprise Applications > app_name > Virtual hosts

There are dropdown boxes you can choose the virtual hosts from. After that and a save, the app should be reacheable only over http.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文