|
With Netcool User Authentication ;
InstallationROSS have a pluggable authentication mechanism in which different authentication modules can be used upon the configuration and login params. By default ROSS doesn't use Netcool Authentication module on login request, operations/auth/RsUserOperations.groovy should be changed so that ROSS will use Netcool Authentication module . operations/auth/RsUserOperations.groovy changes : public static def getAuthenticator() { return "auth.RsUserNetcoolAuthenticator"; } UsageAfter changing RsUserOperations authenticateUser, ROSS will try to authenticate all users except rsadmin against Netcool.
At least one Netcool Connector should be defined, RsUserNetcoolAuthenticator will connect to the Netcool Server identified for user authentication.RsUserNetcoolAuthenticator assumes that all users can be authenticated against one Netcool Server. If different Netcool Servers will be used for different users then authentication logic should be changed accordingly. The user - server mapping can be done with hardcoded mapping or the server that will be used for each user can be saved to RsUser authenticationServer property . Under The HoodNetcool User Authentication is done with only
|
Add Comment