Showing posts with label OBIEE. Show all posts
Showing posts with label OBIEE. Show all posts

Monday, 10 February 2014

Useful OBIEE Links:

Based on your local environment setup,some may not be accessible.
http://hostname:7001/console         
      access Administran Server
http://hostname:7001/em
        Fusion Middleware Control (FMW)
http://hostname:9704/analytics
      verify the status of bi_server1.
http://hostname:9704/analytics/saw.dll?IBotSummary
      create agents
http://hostname:9704/analytics/saw.dll?bipublisherEntry&Action=new&itemType=.xdm
      create a new datamodel for BI Publisher
http://hostname:9704/analytics/saw.dll?bieehome
      access home page
http://hostname:9704/analytics/saw.dll?Admin
     Administration Page
http://hostname:9704/analytics/saw.dll?ManageGroups
      Manage catalog groups
http://hostname:9704/analytics/saw.dll?Sessions
      Manage sessions or for killing a session
http://hostname:9704/analytics/saw.dll?ManageIBotSessions
      Manage Agent sessions
http://hostname:9704/analytics/saw.dll?bipublisherEntry&Done=%2fanalytics%2fsaw.dll%3fAdmin&Action=admin
      Manage BI Publisher previleges
http://hostname:9704/analytics/olh/l_en/biee0194.htm
      launch help documents
http://hostname:9704/analytics/saw.dll?catalog&action=searchpanel&type=all
      perform Catalog search
http://hostname:9704/analytics/saw.dll?perfmon
      view Performance related metrics
http://hostname:9704/analytics/saw.dll?PrivilegeAdmin
      Manage various permissions with in analytics
http://hostname:9704/wsm-pm
      verify the status of Web Services Manager.
http://hostname:9704/xmlpserver
      accesss Oracle BI Publisher application.
http://hostname:9704/ui
      Oracle Real-Time Decisions application.
http://hostname:9704/bioffice/about.jsp
      verify the status of the Oracle BI for Microsoft Office application.
http://hostname:9704/bicomposer
      verify the status of the Oracle BI Composer application, if this link throw error implies bi composer is not configured.
http://slc01egt.us.oracle.com:9704/analytics/saw.dll?wsdl
                                        access web services.

How mIgrate OBIEE 11g Roles and Application Security from Dev to PROD

Stage the system jazn data xml file from Dev and PROD in a temporary location respectively as shown below

/u01/obiee/stage/dev
/u01/obiee/stage/prod

Then also make a jps-config-policy.xml file as below in the stage direcry. Update the Location respectively and save the file

--?xml version="1.0" encoding="UTF-8" standalone='yes'?>
--jpsConfig xmlns="http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd"
schema-major-version="11" schema-minor-version="1">
--!-- This property is for jaas mode. Possible values are "off", "doas" and "doasprivileged" -->
--property name="oracle.security.jps.jaas.mode" value="off"/>
 --propertySets>
--!-- SAML Trusted Issuer -->
--propertySet name="saml.trusted.issuers.1">
--property name="name" value="www.oracle.com"/>
--/propertySet>    --/propertySets>
 --serviceProviders>
--serviceProvider type="POLICY_SRE" name="policysre.xml.provider" class="oracle.security.jps.internal.policysre.xml.XmlPolicySreProvider">            --description>XML-based PolicySre Provider--/description>        --/serviceProvider>    --/serviceProviders>
 --serviceInstances>
 --!-- JPS XML Policy Sre Service Instance -->
--serviceInstance provider="policysre.xml.provider" location="/u01/obiee/stage/dev/system-jazn-data.xml" name="srcpolicysre.xml">
--description>File Based Policy Sre Service Instance--/description>
--/serviceInstance>
 --serviceInstance provider="policysre.xml.provider" location="/cs/obiee/ial/stage/prod/system-jazn-data.xml" name="policysre.xml">
--description>File Based Policy Sre Service Instance--/description>
--/serviceInstance>
 --/serviceInstances>
 --jpsContexts default="default">
--!-- This is the default JPS context. All the mendary services and Login Modules must be configured in this default context -->
--jpsContext name="sourceFileSre">
--serviceInstanceRef ref="srcpolicysre.xml"/>
--/jpsContext> --jpsContext name="targetFileSre">
--serviceInstanceRef ref="policysre.xml"/>
--/jpsContext>
--/jpsContexts>
--/jpsConfig>
~

Now source the WLST : /middlewarehome/Oracle_BI1/common/bin
wlst.sh
migrateSecuritySre(type="appPolicies", srcApp="obi", configFile="/u01/obiee/stage/jps-config-policy.xml", src="sourceFileSre", dst="targetFileSre", overWrite="false")
Ignore any Warnings.
The prod (system-jazn-data.xml) file will be updated with the new roles from Dev (/u01/obiee/stage/prod).
Take this file and deploy in actual direcry in Prod.

Wednesday, 13 November 2013

Repoint OBIEE 11G to new RCU

1.     Login in to the weblogic console, navigate from left menu, services --> datasources and change all datasources to point to new DB from the list
2.     Log in to EM, Then go to Business Intelligence folder à coreapplication àGo to the Deployment tab and then to Scheduler tab. Change the Datasource.
Finally you can check in the system_registry table if any changes are required (Don’t think anything is required here) But will be good to compare old and new table.

Now restart all services including Admin Server.

External LDAP user for Weblogic Administration

OBIEE 11g SSL/SSO/LDAP Notes


OBIEE 11g: Authentication: Errors and Configuration Issues (Doc ID 1472856.1) - Master Note

OBIEE11g - SSL LDAP/ADSI Authentication Setup and Configuration (Doc ID 1326641.1)

OBIEE 11g: How To Setup ADSI LDAP Security Provider (Doc ID 1273961.1)

OBIEE 11g: Configuring Authentication and SSO with Active Directory and Windows Native Authentication (Doc ID 1274953.1)

How To Configure OBIEE 11g To Authenticate Using a Database Identity Store (SQL Authenticator) (Doc ID 1338007.1)

OBIEE11g: SSL Setup and Configuration (Doc ID 1326781.1)

NOTE:1390127.1 - OBIEE 11g: How To Check each Configuration Step when Configuring Authentication and SSO with Active Directory and Windows Native Authentication.

Configuring External LDAP Providers with "iplanet Directory Server" (Doc ID 352036.1)

Weblogic Server Not Closing LDAP (iPlanet) Connection (Doc ID 1308807.1)

Troubleshooting LDAP Issues Support Pattern (Doc ID 1077534.1)

How to Configure Users from an External LDAP for WebLogic Administration Purposes (Doc ID 1384908.1)

Wednesday, 2 October 2013

OBIEE 11g Security Articles from RittManmead Consulting

WLST for adding and removing users in EM

/u01/obiee/middlewarehome/Oracle_BI1/common/bin$ ./wlst.sh (Sources the enviroment and required libraries for opss)


Initializing WebLogic Scripting Tool (WLST) ...
Welcome to WebLogic Server Administration Scripting Shell
Type help() for help on available commands
wls:/offline>  connect('biadmin','XXXXXXXXX','localhost:29000')
Connecting to t3://localhost:29000 with userid biadmin ...
Successfully connected to Admin Server 'AdminServer' that belongs to domain 'bifoundation_domain'.
Warning: An insecure protocol was used to connect to the
server. To ensure on-the-wire security, the SSL port or
Admin port should be used instead.
wls:/bifoundation_domain/serverConfig>  listAppRoles("obi")
Location changed to domainRuntime tree. This is a read-only tree with DomainMBean as the root.
For more help, use help(domainRuntime)
[ [Principal Clz Name : oracle.security.jps.service.policystore.ApplicationRole, Principal Name : BISystem, Type : APP_ROLE], Display Name : BI System Role, Description : null, Guid : F224900024E511E3BF8DAD4CACA361BB]
[ [Principal Clz Name : oracle.security.jps.service.policystore.ApplicationRole, Principal Name : BIAdministrator, Type : APP_ROLE], Display Name : BI Administrator Role, Description : null, Guid : F225053024E511E3BF8DAD4CACA361BB]
[ [Principal Clz Name : oracle.security.jps.service.policystore.ApplicationRole, Principal Name : BIAuthor, Type : APP_ROLE], Display Name : BI Author Role, Description : null, Guid : F225053124E511E3BF8DAD4CACA361BB]
[ [Principal Clz Name : oracle.security.jps.service.policystore.ApplicationRole, Principal Name : BIConsumer, Type : APP_ROLE], Display Name : BI Consumer Role, Description : null, Guid : F225053224E511E3BF8DAD4CACA361BB]


wls:/bifoundation_domain/serverConfig> grantAppRole('obi','BIAdministrator','weblogic.security.principal.WLSUserImpl','User1')
Already in Domain Runtime Tree


wls:/bifoundation_domain/serverConfig> listAppRoleMembers('obi','BIAdministrator')
Already in Domain Runtime Tree
[Principal Clz Name : weblogic.security.principal.WLSGroupImpl, Principal Name : BIAdministrators, Type : ENT_ROLE]
[Principal Clz Name : weblogic.security.principal.WLSUserImpl, Principal Name : User1, Type : ENT_USER]
[Principal Clz Name : weblogic.security.principal.WLSUserImpl, Principal Name : User2, Type : ENT_USER]
[Principal Clz Name : weblogic.security.principal.WLSUserImpl, Principal Name : User3, Type : ENT_USER]
[Principal Clz Name : weblogic.security.principal.WLSUserImpl, Principal Name : User4, Type : ENT_USER]


wls:/bifoundation_domain/serverConfig> revokeAppRole('obi','BIAdministrator','weblogic.security.principal.WLSUserImpl','User1')
Already in Domain Runtime Tree
wls:/bifoundation_domain/serverConfig> revokeAppRole('obi','BIAdministrator','weblogic.security.principal.WLSUserImpl','User2')
Already in Domain Runtime Tree
wls:/bifoundation_domain/serverConfig> grantAppRole('obi','BIAdministrator','weblogic.security.principal.WLSUserImpl','User1')
Already in Domain Runtime Tree
wls:/bifoundation_domain/serverConfig> exit ()


For More Info: Refer to section 9.3 Managing Application Policies with OPSS Scripts (Oracle® Fusion Middleware Application Security Guide
11g Release 1 (11.1.1)


 

Tuesday, 17 September 2013

OBIEE Performance Tuning Guide

Tuesday, 20 August 2013

How to change ports in OBIEE 11G


Stop all OBIEE services



Edit the config.xm File





FMW_HOME/user_projects/domains/bifoundation_domain/config/config.xml



Note: Backup the file before editing.



The default Admin Server port is 7001 and is not present in the file. But if we need to change it then simply add the listen-port tag under machine tag.



8005



Example:





AdminServer

1000

200000

20

21



AdminServer

true



true

500

true

8002

true

disclosure

{AES}KSbntba0UEOz4=

true

BuiltinSSLValidationOnly

BuiltinSSLValidationOnly

false

false

false


FQDN

8005

true











Similarly we can change the bi_server related ports



bi_server1



bi_server1

true



true

500

true

8004

true

disclosure



true

BuiltinSSLValidationOnly

BuiltinSSLValidationOnly

false

false

false



FQDN

8003

true

bi_cluster



javac



bi_server1



Update BI Server Config File



FMW_HOME/instances/instance1/config/OracleBIServerComponent/coreapplication_obis1/NQSConfig.INI

Note: backup file before editing.



FMW_SECURITY_SERVICE_URL = "http://192.1.1.1:8003";  Corresponds to non-ssl port of bi_server

FMW_UPDATE_ROLE_AND_USER_REF_GUIDS = YES;  Change from NO to YES



Start the OBIEE services and revert back the

FMW_UPDATE_ROLE_AND_USER_REF_GUIDS = NO;



The other method is to do the change via Weblogic Console GUI. But if you need to change the default admin port it’s better to do the changes directly in the files stated above.

Wednesday, 14 August 2013

Delete a user from WEB Catalog


Go to the catalog location and under users delete the whole user ID folder
ex. if user is joefern, delete the folder joefern in users

once this is done, look for any file names with the user ID under root/system/security
Most likely there will be files in users and accountid folders. if found, delete those files.

Tuesday, 16 October 2012

OBIEE 11G and 10G Logs


The log files for OBIEE Individual components are under INSTANCE_HOME/instances/instance1/diagnostics/logs. 

11G has neatly compartmentalised logs for each individual components of OBIEE, Below are the location for each of thos components.
Installation log    -->  OBIEE_HOME/logs

nqquery log   -->     OBIEE_HOME/instances/instance1/diagnostics/logs/OracleBIServerComponent/coreapplication_obis1

nqserver log   -->     OBIEE_HOME/instances/instance1/diagnostics/logs/OracleBIServerComponent/coreapplication_obis1

servername_NQSAdminTool log   -->  OBIEE_HOME/instances/instance1/diagnostics/logs/OracleBIServerComponent/coreapplication_obis1

servername_NQSUDMLExec log  -->  OBIEE_HOME/instances/instance1/diagnostics/logs/OracleBIServerComponent/coreapplication_obis1

servername_obieerpdmigrateutil log (Migration log)  -->   OBIEE_HOME/instances/instance1/diagnostics/logs/OracleBIServerComponent/coreapplication_obis1

sawlog0 log (presentation)      -->     OBIEE_HOME/instances/instance1/diagnostics/logs/OracleBIPresentationServicesComponent/coreapplication_obips1

jh log (Java Host)     -->     OBIEE_HOME/instances/instance1/diagnostics/logs/OracleBIJavaHostComponent\coreapplication_obijh

webcatupgrade log (Web Catalog Upgrade)     -->    OBIEE_HOME/instances/instance1/diagnostics/logs/OracleBIPresentationServicesComponent/coreapplication_obips1

nqscheduler log (Agents)        --> OBIEE_HOME/instances/instance1/diagnostics/logs/OracleBISchedulerComponent/coreapplication_obisch1

nqcluster log    -->   OBIEE_HOME/instances/instance1/diagnostics/logs/OracleBIClusterControllerComponent\coreapplication_obiccs1

ODBC log      -->     OBIEE_HOME/instances/instance1/diagnostics/logs/OracleBIODBCComponent/coreapplication_obips1

opmn log      -->      OBIEE_HOME/instances/instance1/diagnostics/logs/OPMN/opmn

Also Logs can be accessed via the EM Console http://server.domain:7001/em
navigate to: Farm_bifoundation_domain-> Business Intelligence-> coreapplications-> Dagnostics-> Log Messages

It is also possible to set individual component level logging from the EM console or rather manage logging for the whole system:

Farm_bifoundation --> application deployment. Select the component and right click to get the options, select logs --> log configuration or view log

OBIEE 10G:

The main logs in OBIEE 10G are as below.

1. BI Presentation Server log can be located from BI_HOME\OracleBIData\web\log\sawlog0.log
This log is useful for Presentation Server login issues and answers/dashboard related issues.
To increase the logging on this server to get a detailed logging to troubleshoot the SSO and integration issues by modifying the logconfig.xml file present in C:\OracleBIData\web\config folder

2. BI Server logs are NQServer.log and NQQuery.log present in BI_HOME\OracleBI\server\Log folder
 NQServer.log consists of BI Server Start up issues and Subject areas loaded and the datasources connected from within the RPD. If the NQSConfig.ini has errors or if RPD has version issues or if proper RPD is not loaded, the BI Server fails to start and this will be recorded in the NQServer.log
NQQuery.log consits of BI Server query operations. We can also check if the result is coming from cache or straight from database. We can get the actual time to execute the query. We can get the physical and logical query from this log.

3. BI Cluster Controller log can located from BI_HOME\OracleBI\server\Log folder. When the cluster is setup with OBIEE server nodes, the NQCluster.log file would provide the cluster nodes connectivity and status information. Along with the NQServer.log , NQCluster.log would be very useful for cluster related issues.

4. BI Javahost can be located from BI_HOME\OracleBIData\web\log\javahost\jhost0.log. This is used for identifying the issues with the charts and graphs generated by Java from Answers/Dashboard reports.

5. BI Scheduler can be located from BI_HOME\OracleBI\server\Log\NQScheduler.log. This is used for identifying the issues related to delivers/scheduler. To increase the logging on scheduler, set the debug flag to true in the scheduler job manager configuration window.


Sunday, 14 October 2012

Master Notes for OBIEE Integration with EBS, SSO


General Troubleshooting Docs for OBIEE Integration Issues :

1. 1082987.1 ALERT: Required and Recommended Patch Levels For OBIEE 10.1.3.x Versions
2. 740257.1 How to increase SAW logging?

SSO Integration with OBIEE :

1. 886493.1 Troubleshooting "You are not currently logged in to the Oracle BI Server" error in OBI when SSO is enabled.
2. 860234.1 Addition of LDAP authentication to BI Applications rpd causes BI server crash
3. 1074402.1 Integrating Oracle BI Enterprise Edition with PeopleSoft - without an SSO product

EBS Integration with OBIEE :

  • Following Documents can be reviewed if you are having errors/issues while integrating EBS and OBIEE :
  •  758392.1 How to diagnose "You are not currently logged in to the Oracle BI Server.." error when login from EBS to OBI ? 
  •  1067342.1 Is it possible to have 1 rpd and authenticate users from both Siebel and EBS in OBIEE ?
  • 544722.1 Authorization Block Failed when populated from EBS database
    555254.1 Enabling Action Links in Oracle Business Intelligence Applications for Oracle E-Business Suite
  • 755768.1 OBIEE intregation with AD and R12 Ebusiness Suite
  • Error S8VLP8HS: Cannot Navigate to BI Publisher from E-Business Suite Analytics (Doc ID 728319.1)

Siebel Integration with OBIEE

1. 477579.1 Requirements for Web Server Setup in an Integrated Siebel Analytics Environment
2. 737516.1 Why does Action Link Dropdown not appear ?
3. 477113.1 Configuring Siebel Analytics/OBIEE integrated authentication mechanism with Siebel
4. 475349.1 How To Embed Contextual Oracle Business Intelligence Content in Siebel Business Applications for Versions 7.5.x, 7.7.x, and 7.8.2
5. 489010.1 Siebel SSO with Siebel Analytics - integration
6. 477377.1 Integrating Siebel Analytics with Siebel Applications 

Wednesday, 10 October 2012

OBIEE Web Catalog Corruption in OBIEE 11G

Catalog Corruption can cause the OBIEE system to act strange. We had several instances where by due to the catalog corruption the system stability was severly effected. The OBIEE system would randomly cause user lockouts where it would say you do not have permissions even though the user just accessed the system a couple of minutes ago. This would entail restarting the presentation services to get the user backin. The other issue we noticed was that BI Publisher stopped working all together which we eventaully tracked back to catalog corruption.

Issue 1:

User Lockout Issues: Users recieved the message, We are sorry, but it appears that you either do not have sufficient rights to access this particular report or the system is down. Al though a custom message but actually this message hid the Oracle error message.


All the services at this time were running including em. console and BI services.

Issue 2:

BI Publisher not accessible. Sometimes you would see the error message "Server not initialized. Please make sure the repository is ready" or sometimes you may just get a blank screen. If you lookup the error on internet or metalink (Note: 1265839.1 or 1359064.1) then it talks about priviledges issue and asks to assign the following roles.
  • Assign the "BIConsumer" and "BISystem" roles to the "Access to SOAP" privilege.
  • Assign the "BIAdministrator" and "BISystem" roles to the "Impersonate as system user" privilege.
But In our case we already had these priviledges granted. After a lot of looking around and a SR with Oracle, we managed to pin the issue to BISystem User corruption in CATALOG.

SOLUTION:

The solution to above issues is to validate the catalog. The Process to do so is given below and well documeted in OBIEE Admin Guide.

Validating the Catalog
Over time, inconsistencies can develop in the catalog as links are broken, users are deleted, or NFS file system issues are encountered. These inconsistencies can eventually lead to incorrect behavior, such as the inability to edit an agent's recipient list. You can periodically take the production system offline and validate the catalog, to be informed of and to take corrective action on inconsistencies.
Performing a Basic Validation of the Catalog
Use the following procedure to perform a basic validation of the catalog.
To validate the catalog:
1.     Stop Presentation Services.
2.     In 11g only, regenerate the user GUIDs for the catalog
Ensure that you regenerate the user GUIDs before validating the catalog. Failure to do so can result in the removal of all accounts, permissions, and privileges from the catalog.
1.     Update the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS parameter in NQSConfig.INI:
a.     Open NQSConfig.INI for editing at:
b.  ORACLE_INSTANCE/config/OracleBIServerComponent/coreapplication_obisn
c.     Locate the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS parameter and set it to YES, as follows:
d.  FMW_UPDATE_ROLE_AND_USER_REF_GUIDS = YES;
e.     Save and close the file.
2.     Update the Catalog element in instanceconfig.xml:
a.     Open instanceconfig.xml for editing at:
b.  ORACLE_INSTANCE/config/OracleBIPresentationServicesComponent/coreapplication_obipsn
c.     Locate the Catalog element and update it as follows:
a.  -<Catalog
b.  -<UpgradeAndExit>
false
c.  UpdateAccountGUIDs>UpdateAndExit
d.  /Catalog>

h.     Save and close the file.
3.     Restart the Oracle Business Intelligence system components using opmnctl:
4.  cd ORACLE_HOME/admin/instancen/bin
5.  ./opmnctl stopall
6.  ./opmnctl startall
7.     Set the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS parameter in NQSConfig.INI back to NO.
Important: You must perform this step to ensure that your system is secure.
8.     Update the Catalog element in instanceconfig.xml to remove the UpdateAccount GUIDs entry.
9.     Restart the Oracle Business Intelligence system components again using opmnctl:
a.  \Oracle_BI1\opmn\bin>opmnctl stoptall
b.   \Oracle_BI1\opmn\bin>opmnctl startall

3.     Back up the catalog by using the 7-Zip utility to create a compressed file for it.
4.     Create a backup copy of the instanceconfig.xml file.
5.     Edit the instanceconfig.xml file so that it contains the appropriate elements for performing the validation.
6.     Start Presentation Services to run the validation according to the values that you specified in the instanceconfig.xml file.
7.     Stop Presentation Services.
8.     Create a backup copy of the instanceconfig.xml file in which you added the validation elements, renaming the file similar to instanceconfig_validate.xml. In this way, you have a version of the file to use as a starting point for subsequent validations.
9.     Restore the backup version of the instanceconfig.xml that you created earlier to use as the current version.
10.  Start Presentation Services.
Specifying the Elements for Validating the Catalog
As part of the process of validating the catalog, you include elements in the instanceconfig.xml file that run the validation when you restart Presentation Services. The following procedure describes how to edit the instanceconfig.xml file to include these elements.
To specify the element for validating the catalog:
1.    Open the instanceconfig.xml file for editing.
2.     File Location in \instances\instance1\config\OracleBIPresentationServicesComponent\coreapplication_obips1
3.    Locate the Catalog section in which you must add the elements that are described in Table 17-1.
4.  Include the elements and their ancestor element as appropriate, as shown in the following example. In this example, the validation runs when Presentation Services starts. Inconsistent accounts (such as those for deleted users), links, and objects are removed. Inconsistent users' home directory names are logged but directories are not removed.
- <ps:Catalog xmlns:ps="oracle.bi.presentation.services/config/v1.1">
      <UpgradeAndExit>false</UpgradeAndExit>
         
  <ps:Validate>OnStartupAndExit</ps:Validate>
  <ps:ValidateAccounts>Clean</ps:ValidateAccounts>
  <ps:ValidateHomes>Report</ps:ValidateHomes>
  <ps:ValidateItems>Clean</ps:ValidateItems>
  <ps:ValidateLinks>Clean</ps:ValidateLinks>
  </ps:Catalog>

Caution:
Include only one Catalog element in the instanceconfig.xml file or unexpected results might occur. Unless expressly noted, include most nodes in an XML document only once.
5.    Save your changes and close the file.

Table 17-1 Elements for Validating the Catalog
Element
Description
Default Value
Validate
Performs the validation of the catalog according to the values of the other Validate-related elements in this section. Values are described in the following list:
  • None — Performs no validation.
  • OnStartup — Performs the validation when Presentation Services starts.
  • OnStartupAndExit — Performs the validation when Presentation Services both starts and stops. This value allows re-running of the validation, performing as many cycles of Report and Clean until the catalog is as clean as appropriate.
If this value is not None, then all privileges and each object's ACLs in the entire catalog are cleaned of terminated accounts, regardless of the settings of the other Validate-related elements.
None
ValidateAccounts
Verifies that all information about users, roles, and groups in the catalog is consistent. Values are described in the list after this table.
None
ValidateHomes
Verifies that all information about home directories in the catalog is consistent. Values are described in the list after this table.
None
ValidateItems
Verifies that all information about objects in the catalog is consistent. Values are described in the list after this table.
None
ValidateLinks
Verifies that all information about links in the catalog is consistent. Values are described in the list after this table.
None


The elements have the values that are described in the following list:
·        None — Specifies that no validation is performed.
·        Report — Specifies that details about each inconsistent object are written to the sawlog.log file.
·        Clean — Specifies that details about each inconsistent object are written to the sawlog.log file and that each object is removed from the catalog.