1

有什么方法可以将生产环境的 WebSphere 管理控制台界面与其他环境区分开来?最近,我们的一位团队成员通过 WebSphere 管理控制台意外回收了生产服务器。我们希望在生产管理控制台顶部有一个粗红条或更改生产管理控制台的界面颜色。

4

2 回答 2

3

两种方式:

  • 支持 - 您可以'name'通过给定控制台System administration > Console identity- 您可以提供一个名称,该名称将出现在Welcome adminUsername文本之后的顶部横幅中。
  • 不受支持 - 您可以在管理应用程序中修改某些内容(图像、css),例如banner-swoosh.png位于其中的顶部横幅图像C:\IBM\WebSphere\AppServer85\systemApps\isclite.ear\isclite.war\images- 请记住清除浏览器缓存以查看修改,并且它将被您将应用的任何修复包替换
于 2014-09-29T21:28:40.953 回答
1

In addition to what Gas suggests, another option might be to use a browser plugin like Stylish for Firefox/Chrome to apply a custom style for each environment.

Here's a simple Stylish script that will make part of the banner use the specified background color:

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document regexp("https://your-server:9043/ibm/console/.*") {
  #ibm-banner-main {
    background-color: green !important;
  }
}

Replace 'your-server' and potentially the 'https' and port, as appropriate.

You can list multiple @-moz-document sections too if you want a single script for different environments (Development, Test, Production, etc.)

于 2014-09-30T23:25:52.413 回答