在 Websphere 应用程序服务器上禁用 SSL
有没有办法在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,应用程序的登录部分与您用于访问应用程序的协议无关,例如您可以使用登录对话框(表单、http 身份验证...等),使用“正常”http 或 http over SSL(如果应用程序不仅仅在内部使用,则首选 SSL,即使是,我也会考虑使用 SSL)。
在 WebSphere 中,您将应用程序部署在 虚拟主机< /a>. 虚拟主机是可以访问您的应用程序的主机名和端口(称为主机别名)的集合。 因此,为了获得您想要的行为,我将创建一个新的虚拟主机(描述适用于 6.1 中的 WebSphere 管理控制台应用程序):
为其指定一个描述性名称,例如 http_only。 然后您可以:
添加主机名或星号(“*”,不带引号)和端口号(在本例中为 http 端口。下一步是更改应用程序绑定的虚拟主机:
有下拉列表您可以从中选择虚拟主机并保存后,该应用程序应该只能通过 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):
Give it a descriptive name, like http_only. Afterwards you do:
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:
There are dropdown boxes you can choose the virtual hosts from. After that and a save, the app should be reacheable only over http.