8 Configuring Search in WebCenter Portal

Configure search to index and search objects in WebCenter Portal.

Note:

Before performing any search, the Portal scheduler needs to be run in order to ensure that the results of the search are shown correctly.

Permissions:

To perform the tasks in this chapter, you must be granted the WebLogic Server Admin role through the Oracle WebLogic Server Administration Console and the Administrator role granted through WebCenter Portal Administration.

For more information about roles and permissions, see Understanding Administrative Operations, Roles, and Tools.

Note:

Beginning with Release 12c (12.2.1.4.0), Oracle WebCenter Portal has deprecated the support for Oracle SES. If you have upgraded from a prior release, your upgraded instance might be configured to use Oracle SES. In this case, you must configure WebCenter Portal to use Elasticsearch.

8.1 Creating a Crawl Admin User in WebCenter Portal

You can designate an existing user as crawl admin or create a crawl admin user (for example, mycrawladmin) in WebCenter Portal and in your back-end identity management server to search using Elasticsearch. You must create a crawl admin user only once.

Note:

See your identity management system documentation for information on creating users.

The following example uses Oracle Directory Services Manager to create the mycrawladmin user:

  1. On the Data Browser tab, navigate to the target cn and click Create.

    This example navigates to "dc=com,dc=oracle,dc=us,cn=Users".

  2. In the Add Object Class dialog, select the appropriate object class, and click OK.

    Figure 8-1 Oracle Directory Services Manager - Add Object Class

    Description of Figure 8-1 follows
    Description of "Figure 8-1 Oracle Directory Services Manager - Add Object Class"
  3. Find the distinguished name (DN) path, and click Select.

    This example selects "dc=com,dc=oracle,dc=us,cn=Users".

    Description of wcadm_selectdn1.gif follows
    Description of the illustration wcadm_selectdn1.gif
  4. In the Create New Entry dialog, enter properties, and click Next.

    Figure 8-2 Oracle Directory Services Manager - Create New Entry

    Description of Figure 8-2 follows
    Description of "Figure 8-2 Oracle Directory Services Manager - Create New Entry"
  5. When you see that the new entry was created successfully, click Finish.

    Figure 8-3 Oracle Directory Services Manager - Status

    Description of Figure 8-3 follows
    Description of "Figure 8-3 Oracle Directory Services Manager - Status"

8.2 Integrating with Elasticsearch

Configure Elasticsearch to index and search objects in WebCenter Portal.

8.2.1 Understanding Search with Elasticsearch

Elasticsearch is a highly scalable search engine. It allows you to store, search, and analyze big volumes of data quickly and provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents.

Advantages of Elasticsearch

  • Elasticsearch provides full-text search capabilities as it is built on Lucene.

  • Elasticsearch is document-oriented. It stores data as structured JSON documents and indexes all fields by default, with a higher performance result.

  • Elasticsearch is API driven; actions can be performed using a simple Restful API.

  • Elasticsearch retrieves search results fast because it searches an index instead of searching the text directly.

You can configure Elasticsearch to search the following resources in WebCenter Portal:

  • Documents, including wikis and blogs

  • Portals, page metadata, page content (contents of HTML, Text and Styled Text components), lists, and people resources

8.2.2 Prerequisites for Configuring Elasticsearch

Ensure the following requirements:

8.2.3 Configuration Roadmap for Elasticsearch in WebCenter Portal

Table 8-1 Roadmap - Setting Up Elasticsearch in WebCenter Portal

Actor Task

Administrator

Creating a Crawl Admin User in WebCenter Portal

Administrator

Installing Elasticsearch

Administrator

Configuring WebCenter Content for Search

Administrator

Configuring WebCenter Portal for Search
Administrator Configuring Search Crawlers

Administrator

(Optional) Customizing Search Settings in WebCenter Portal Administration

Administrator

(Optional) Modifying Search Global Attributes

Administrator

(Optional) Configuring Search Custom Attributes

Administrator

(Optional) Creating Custom Facets

8.2.4 Installing Elasticsearch

The following topics describe how to set up a single server and secure using HTTPS:

8.2.4.1 Setting Up Single Server

Note:

If Elasticsearch 7.17.x is already installed and configured for WebCenter Content Server, the same can be used for WebCenter Portal and the following can be skipped. But, the username used to connect to Elasticsearch in WebCenter Content should be set as the crawl admin user in WebCenter Portal. See Creating a Crawl Admin User in WebCenter Portal.
To install a single server setup, first you need to download the Elasticsearch 7.17.x binaries from Elasticsearch Releases. Ensure that Bash shell is used and then, follow the steps given below:
  1. Set the following environment variable:
    #For Linux
    export ES_JAVA_HOME="Set the value to the Java home directory used to install WebCenter Portal"
     
    #For Windows
    set ES_JAVA_HOME="Set the value to the Java home directory used to install WebCenter Portal"
  2. Edit the ORACLE_HOME/wcportal/es/secureES.properties file and specify the values for the properties.

    secureES.properties

    # A valid user name configured with crawler privileges.
    SEARCH_APP_USER=
    #
    # Name of the Elasticsearch cluster. Default value is CURRENT_HOST_NAME and it will be replaced with current hostname. This default is appropriate for single-host environment only.
    # If this value is changed, make sure that you don't reuse the same cluster names in different environments. Otherwise, you might end up with nodes joining the wrong cluster.
    # Cluster name should be environment-specific and unique across your enterprise.
    ELASTIC_SEARCH_CLUSTER_NAME=CURRENT_HOST_NAME
    #
    # Name of the Elasticsearch node. Default value is CURRENT_HOST_NAME and it will be replaced with current hostname. This default is appropriate for single-host environment only.
    # If this value is changed, make sure that you don't reuse the same node name within the Elasticsearch cluster.
    ELASTIC_SEARCH_NODE_NAME=CURRENT_HOST_NAME
    #
    # HTTP port of Elasticsearch server. Default value is 9200.
    ELASTIC_SEARCH_PORT=9200
    #
    # Elasticsearch network host. Default value is 0.0.0.0 and it means Elasticsearch server will listen on all network interfaces.
    # If you have a requirement to limit traffic on multi-homed hosts with multiple network interfaces, set to a specific hostname, IP address, or network interface name.
    # If network interface name is to be specified, it should be specified as: _[networkInterface]_, for example _eth0_.
    ELASTIC_SEARCH_NETWORK_HOST=0.0.0.0
    #
    # Elasticsearch home directory. It is the directory which contains bin,config,logs etc directories
    ELASTIC_SEARCH_HOME=
    #
    # Transport port of Elasticsearch server. Default value is 9300.
    # This configuration is used for internal communication between nodes within the cluster.
    ELASTIC_SEARCH_TRANSPORT_PORT=9300
    #
    #
    ##########################################################################################################################################################################
    #
    # NOTE: The following properties are required/applicable only if setting up a cluster.
    #
    ##########################################################################################################################################################################
    #
    # Elasticsearch cluster discovery host list. All the hosts that will be part of the cluster should be configured in this list.
    # Each host should be declared by the appropriate fully-qualified hostname.
    # Each host should be formatted in double-quotes separated with a comma and space. The list should be wrapped in square-brackets. For example, ["host1.example.com", "host2.example.com"].
    ELASTIC_SEARCH_CLUSTER_HOST_LIST=
    #
    # Elasticsearch cluster discovery node list. All the nodes that will be part of the cluster should be configured in this list.
    # Each node should be declared by the corresponding value of ELASTIC_SEARCH_NODE_NAME specified during the installation.
    # Each node should be formatted in double-quotes separated with a comma and space. The list should be wrapped in square-brackets. For example, ["node-1", "node-2"].
    ELASTIC_SEARCH_CLUSTER_NODE_LIST=
    #
    # The name of the certificate which will be generated and used for the secure communication between the nodes of the cluster.
    # The certificate generated is of PKCS#12 format. Hence the certificate extension should be .p12 only.
    ELASTIC_SEARCH_CERTIFICATE_NAME=node-certificate.p12
    #
    # The primary host of Elasticsearch cluster. This should be one of the hosts in ELASTIC_SEARCH_CLUSTER_HOST_LIST.
    # Only during installation on this host, the certificate specified in ELASTIC_SEARCH_CERTIFICATE_NAME and user specified in SEARCH_APP_USER are created.
    # The configured value should be fully-qualified hostname.
    ELASTIC_SEARCH_PRIMARY_HOST=
  3. Enter the following command to install Elasticsearch:
    For Linux:
    ORACLE_HOME/oracle_common/common/bin/wlst.sh ORACLE_HOME/wcportal/es/secureESNode.py ORACLE_HOME/wcportal/es/secureES.properties
     
    For Windows:
    ORACLE_HOME\oracle_common\common\bin\wlst.sh ORACLE_HOME\wcportal\es\secureESNode.py ORACLE_HOME\wcportal\es\secureES.properties

    The following is the sample output for the successful installation on Linux:

    Security Configuration Script

    Initializing WebLogic Scripting Tool (WLST) ...
     
     
     
    Welcome to WebLogic Server Administration Scripting Shell
     
    Type help() for help on available commands
     
    Please provide a password for search application user [username = wccrawladmin]:
     
    Please provide a password for certificate 'node-certificate.p12':
     
    Generating node certificate for secured communication...
    Node certificate generated and password added to elasticsearch keystore successfully.
    Successfully updated the elasticseach.yml file
    Creating the user wccrawladmin in Elasticsearch server...
    Starting elastic search server
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    100    82  100    23  100    59     15     39  0:00:01  0:00:01 --:--:--    39
    Stopped elastic search server
    The user wccrawladmin is created successfully.
    Starting elastic search server
    Elasticsearch server security configuration is complete.
  4. After the successful installation, verify that Elasticsearch is configured properly.
    1. Access the URL http://host:9200 using the Mozilla Firefox browser.

      A basic authentication dialog is displayed to enter the user name and password.

    2. Enter your crawl user name and password that you created in WebCenter Portal. See Creating a Crawl Admin User in WebCenter Portal.

      Successful log-in confirms that Elasticsearch Server is configured properly.

  5. You can start/stop Elasticsearch with the following commands:

    Starting Elasticsearch:

    # For Linux:
    # To run Elasticsearch as a daemon     
    cd $ELASTIC_SEARCH_HOME; bin/elasticsearch -d -p pid
     
     
    #For Windows:
    #Start Elastic search
    cd $ELASTIC_SEARCH_HOME; bin\elasticsearch -p pid

    Log messages can be found in the $ELASTIC_SEARCH_HOME/logs/directory.

    To shut down Elasticsearch, kill the process ID recorded in the pid file:

    #For Linux:
    pkill -F <pid>
     
    #For Windows
    taskkill /pid <pid> /f
8.2.4.2 Securing Elasticsearch Using HTTPS
The Elasticsearch 7.x server can be secured using HTTPS so that the communication between the client and the Elasticsearch server happens over SSL. The following steps are required to configure:
  1. Stop the Elasticsearch server.
  2. Set the following environment variables:
    • ES_HOME - Set this to Elasticsearch Home directory.
    • ES_JAVA_HOME - Set this to the Java Home directory.
    • PATH - Update to use $ES_JAVA_HOME/bin.
  3. Generate a certificate and private key for the Elasticsearch server. When prompted, provide a password for the certificate.
    $ES_HOME/bin/elasticsearch-certutil cert -s -out $ES_HOME/config/https-certificate.p12 --dns <DNS_name>
    where <DNS_name> is the fully qualified hostname of the Elasticsearch server.
  4. The password used above should be stored in Elasticsearch Keystore. Run the following commands to store the password:
    $ES_HOME/bin/elasticsearch-keystore add xpack.security.http.ssl.keystore.secure_password
    $ES_HOME/bin/elasticsearch-keystore add xpack.security.http.ssl.truststore.secure_password
  5. Add the following configuration to the $ES_HOME/config/elasticsearch.yml file:
    xpack.security.http.ssl.enabled: true
    xpack.security.http.ssl.verification_mode: certificate
    xpack.security.http.ssl.keystore.path: https-certificate.p12
    xpack.security.http.ssl.truststore.path: https-certificate.p12
  6. Start the Elasticsearch server.
8.2.4.2.1 Adding Certificate to WebCenter Portal Keystore
The Elasticsearch server certificate must be added to WebCenter Portal Keystore to establish the trust between the client and server.

Download Certificate from Elasticsearch Server

The following steps can be used to obtain the certificate from the Elasticsearch server:
  1. Open the Firefox browser and connect to the Elasticsearch server with the following command:
    https://host_name:9200

    where host_name is the name of the Elasticsearch server.

  2. Accept the security exception and continue. Provide the login credentials when prompted.
  3. Click the Lock icon in the URL field and navigate to Connection not secure and then More Information.
  4. In the pop-up window, click the View Certificate button.
  5. Click on the link PEM (cert) to download the certificate in the .PEM format.

Add the Certificate to WebCenter Portal Keystore

Once the certificate is downloaded, it should be imported to WebCenter Portal Keystore.

To import:

  1. Execute the following command in WebCenter Portal server and enter the Keystore password when prompted:
    keytool -importcert -alias es_cert -file /filepath/sslcertificate/es_certificate.pem -keystore <JDK_path>/jre/lib/security/cacerts
  2. Restart the Managed server.

Adding certificate to WebCenter Portal Custom Trust Key Store

To add:

  1. Execute the following command:
    keytool -importcert -alias es_cert -file /filepath/sslcertificate/es_certificate.pem -keystore <Custom Trust Key Store File Name>


    This image shows the file name of custom trust keystore.

  2. Restart Admin and WC_Portal server.
8.2.4.2.2 Search Connection to Elasticsearch Server Running on HTTPS
If the search connection doesn't exist, the search connection to the Elasticsearch server running on HTTPS can be created using the following command:
createSearchConnection(appName='webcenter', name='<conn_name>', url='https://<ES_host>:<ES_port>', indexAliasName='<index_alias>', appUser='<app_user>', appPassword='<app_user_password>')

If the search connection already exists, it should be updated to use HTTPS and can be done using the following command:

setSearchConnection(appName='webcenter', name='<existing_conn_name>', indexAliasName='<existing_index_alias>', appUser='<app_user>', appPassword='<app_user_password>', useSSL=1)

8.3 Configuring WebCenter Content for Search

Enable Faceted Search and Sort

Ensure that faceted search and sort is enabled for the following fields.

Note:

The desktop client application should be used for the following steps.

Navigate to the Configuration Manager Applet, Advanced Search Design, and then select the following field.

  • dDocAccount: Click Edit and select the check box Is a filter category (if not selected). Click Ok.
  • dDocAuthor: Click Edit and select the check boxes Is a filter category and Is sortable (if not selected). Click Ok.
  • dDocLastModifiedDate: Click Edit and select the check boxes Is a filter category and Is sortable (if not selected). Click Ok.
  • dDocTitle: Click Edit and select the check box Is sortable (if not selected). Click Ok.
  • dFormat: Click Edit and select the check box Is a filter category (if not selected). Click Ok.
  • xWCTags: Click Edit and select the check box Is a filter category (if not selected). Click Ok.

Full Collection Rebuild of the Search Index in WebCenter Content

To perform a full collection rebuild:

  1. Log in to Oracle WebCenter Content server as a system administrator.
  2. On the Oracle WebCenter Content home page, expand Administration and select Admin Applets.
  3. On the Administration Applets page, click Repository Manager.
  4. On the Repository Manager page, click the Indexer tab.
  5. Under Collection Rebuild cycle section, click Start. In the dialog, deselect the Use fast rebuild option and then click OK to proceed.

8.4 Configuring WebCenter Portal for Search

To configure WebCenter Portal for search, you need to configure the connection between WebCenter Portal and Elasticsearch.

8.4.1 Configuring WebCenter Portal for Elasticsearch

  1. Using WLST
    At the WLST command prompt, run the createSearchConnection WLST command to configure a connection between WebCenter Portal and Elasticsearch:
    createSearchConnection(appName, name, url, indexAliasName, appUser, appPassword)

    where

    • appName is the name of the application, for WebCenter Portal, the value is webcenter.
    • name is the connection name. The name must be unique within the application. For example dev-es.
    • url is the location of the Elasticsearch server. For example, http://host:9200
    • indexAliasName is the name of the index alias in the Elasticsearch server. For example, webcenter_portal.

      The indices will be created using the alias as the prefix, as shown in the following example:<indexAliasName>_portals For example, webcenter_portal_portals

      Note: The name must be in lowercase alphanumeric characters and unique across all portal servers.

    • appUser is the crawl admin user name. For example, mycrawladmin.
    • appPassword is the crawl admin user password.

    The following example creates a connection between WebCenter Portal (webcenter) and Elasticsearch located at http://host:9200:

    createSearchConnection (appName='webcenter',name='dev-es', url='http://host:9200', indexAliasName='webcenter_portal', appUser='mycrawladmin', appPassword='welcome1')
  2. Using Fusion Middleware Control
    1. Grant Crawl Admin User the application role so that it may perform searches on behalf of WebCenter Portal users.
      1. Connect to Fusion Middleware Control as an administrator: http:<host:port>/em.
      2. Navigate to WebLogic Domain, Security, and then to Application Roles.

        The Application Roles page opens.

      3. Select webcenter as the Application Stripe.
      4. Click the arrow against the Role Name field to populate all the existing roles.
      5. Select the role webcenter#-#defaultcrawl and click Edit.

        The Edit Application Role page opens.

      6. Click Add.

        The Add Principal dialog opens.

      7. Select Application Role, User as the Type.
      8. Search for the Crawl Admin User based on the Principal Name or the Display Name.
      9. Select Principal and click OK.
      10. Click OK in the Edit Application Role page.
    2. Creating a Connection to the Search Server Using Fusion Middleware Control
      1. Log in to Fusion Middleware Control and navigate to the home page for WebCenter Portal.
      2. From the WebCenter Portal menu, select Settings and then Service Configuration.
      3. On the WebCenter Portal Services Configuration page, from the list of services, select Search.
      4. Click Add.
      5. In the Connection Name field, enter a unique name for the Search connection.
      6. In the Search URL field, enter the location of the Elasticsearch server. For example, http://host:9200
      7. In the Index Alias Name field, enter the name of the index alias in the Elasticsearch server. For example, webcenter_portal
      8. In the Application User Name field, enter the Crawl Admin user name. For example, mycrawladmin.
      9. Enter the password.
      10. Click Test to verify if the connection you created works.
      11. Click OK to save the connection.

8.5 Synchronizing Users in WebCenter Portal

Before performing a portal full crawl, we recommend you to run the LDAP synchronization WLST command to ensure that all users are available in portal.

To synchronize users in WebCenter Portal:
  1. Navigate to your Oracle home directory and invoke the WLST script.
  2. Connect to the Oracle WebCenter Portal domain (WC_Portal ) server.
  3. At the WLST command prompt, run the startSyncProfiles WLST command to synchronize profile information.
    startSyncProfiles(appName='webcenter')

    Note:

    Synchronizing profile information may take some time depending on the number of users.

  4. Run the isSyncProfilesRunning command to verify that the user synchronization is complete.
    isSyncProfilesRunning(appName='webcenter')

8.6 Configuring Search Crawlers

You can configure the following types of crawlers to index WebCenter Portal resources:

  • Portal Crawler: This uses the Portal crawl source to crawl certain objects, such as lists, page metadata, page content (contents of HTML, Text, and Styled Text components), portals, and profiles.

The following topics describe how to create different crawl sources using Scheduler UI in WebCenter Portal Administration:

8.6.1 Creating a Portal Crawl Source

To create a crawl source to crawl objects such as lists, page metadata, page content (contents of HTML, Text, and Styled Text components), portals, and profiles:
  1. On the Settings page (see Accessing the Settings Pages in WebCenter Portal Administration), click Tools and Services.

    You can also enter the following URL in your browser to navigate directly to the Tools and Services pages:

    http://host:port/webcenter/portal/admin/settings/tools
  2. Click the icon for Search to open the Search Settings page.

    Figure 8-4 Elasticsearch Settings

    The figure shows the search setting options in the Search Setting page, such as search scope, custom attributes.
  3. On the Scheduler tab, select the Portal crawl source and click Edit.

    Figure 8-5 Elastic Search Setting Scheduler

    This image shows the Search Settings page.
  4. On the Edit Portal Crawl Source page, modify the following source parameters as desired:
    • Maximum number of connection attempts: Maximum number of connection attempts to access the configuration URL. Choose number from 2 to 10.

    • Configuration URL: URL of the RSS crawl servlet. For example: http://wcp-host:wcp-port/rsscrawl

    Figure 8-6 Elastic Search Edit Portal Crawl Source

    This image shows the Edit Portal Crawl Source page.
  5. Enter the WebCenter Portal crawl admin user credentials.
  6. Click Test to test the connection.
  7. Click Save and Close to save the changes.

8.7 Configuring Search Custom Attributes

When you search using WebCenter Portal, only certain predefined attributes show up in the search results. WebCenter Portal allows you to see additional attributes in your search results. This can be achieved from the Search Setting page in portal administration, where the Custom Attributes section lets you select which custom search attributes should appear in search results and the order in which they appear. This list in the Search Setting page is driven by search-service-attributes.xml. It contains list of all attributes that we crawl for each service. Types in search index is defined by this metadata. You can add a new custom attribute or modify the existing one in the search-service-attributes.xml file.

The following procedure describes how to add a new search custom attribute using Document service as an example:

To add a new search custom attribute:
  1. Create a custom metadata field. See Adding a Custom Metadata Field in Oracle WebCenter Content.
  2. Full Collection Rebuild of the Search Index in WebCenter Content.
  3. Add a new custom attribute to the search-service-attributes.xml file:
    1. At the WLST command prompt, run the exportMetadata WLST command to export the latest search-service-attributes.xml file from MDS repository:
      exportMetadata('webcenter', 'WC_Portal', toLocation='/tmp/es', docs='/oracle/webcenter/search/scopedMD/
      s8bba98ff_4cbb_40b8_beee_296c916a23ed/search-service-attributes.xml')
    2. Add the new custom attribute to the search-service-attributes.xml file.

      In this example, Custom Metadata Field is added to the search-service-attributes.xml file under the oracle.webcenter.doclib service ID:

      <service id="oracle.webcenter.doclib">
          <attribute name="author" displayNameKey="WC_AUTHOR" displayName="Author" type="keyword"/>
          <attribute name="doc_author" displayNameKey="WC_DOC_AUTHOR" displayName="Author" type="keyword" backendAttribute="dDocAuthor"/>
             … 
             …
             …
             …
         <attribute name="wcsecattr" displayNameKey="WC_SECATTR" displayName="Security Attributes" type="keyword" hidden="true"/>
         <attribute name="wcsecattr_deny" displayNameKey="WC_SECATTRDENY" displayName="Security Deny Attributes" type="keyword" hidden="true"/>
         <attribute name="custom_metadata_field" displayNameKey="WC_CustomMetadataField" displayName="Custom Metadata Field"  type="keyword" backendAttribute="xCustomMetadataField”/>/>
      </service>
    3. Save and import the updated search-service-attributes.xml file to the MDS repository using the importMetada WLST command:
       
      importMetadata('webcenter', 'WC_Portal', fromLocation='/tmp/es', docs='/oracle/webcenter/search/scopedMD/
      s8bba98ff_4cbb_40b8_beee_296c916a23ed/search-service-attributes.xml')
  4. Access the Search Settings page in portal administration and verify if the new attribute is appearing in the Available Attributes under Custom Attributes section.

    In this example, Custom Metadata Field is the newly added custom attribute.

    Figure 8-7 Verifying the Newly Added Custom Attribute

    Description of Figure 8-7 follows
    Description of "Figure 8-7 Verifying the Newly Added Custom Attribute"
  5. Select the newly added custom attribute from the list of Available Attributes and move it to the Included Attributes column so that they appear in search results.
  6. Click Apply.
  7. Navigate to your portal and enter a search term in the global search field and click the search icon.

    The following figure shows search results that include the newly created custom attributes, Custom Metadata Field:

    Figure 8-8 Search Results with the Created Custom Attribute

    Description of Figure 8-8 follows
    Description of "Figure 8-8 Search Results with the Created Custom Attribute"

8.8 Creating Custom Facets

Oracle WebCenter Portal supports faceted search to refine the search results without running a new search. With faceted search, search results are grouped under a predefined category and thus help users to narrow down the search results based on a relevant category. for example, Author, Portal, Last Modified date.

In Oracle WebCenter Portal, by default, certain predefined facets are provided in the Search Setting page. The list of facets is driven by the search-service-custom-facets.xml metadata file and each facet in the file is mapped with search-service-attributes.xml metadata file.

The following is the sample of the search-service-custom-facets.xml metadata file:

<custom-facet dataType="keyword" displayName="Author" displayNameKey="ES_FACET_AUTHOR" mappedSearchAttribute="author" name="Author" itemsToDisplay="20"/>
<custom-facet dataType="keyword" displayName="Service ID" displayNameKey="ES_FACET_SERVICEID" mappedSearchAttribute="wc_serviceId" name="Service ID"/>
<custom-facet dataType="keyword" displayName="Portal" displayNameKey="ES_FACET_SCOPE" mappedSearchAttribute="wc_scopeGuid" name="Scope GUID" itemsToDisplay="20"/>
<custom-facet dataType="keyword" displayName="Tags" displayNameKey="ES_FACET_TAGS" mappedSearchAttribute="wc_tagWords" name="Tags"itemsToDisplay="20"/>
<custom-facet dataType="keyword" displayName="Mimetype" displayNameKey="ES_FACET_MIMETYPE" mappedSearchAttribute="mimetype" name="Mimetype" itemsToDisplay="20"/>
<custom-facet dataType="date" displayName="Last Modified Date" displayNameKey="ES_FACET_LASTMODIFIED" mappedSearchAttribute="lastmodified"
name="Last Modified Date" />

where,

  • name is the name of the facet.

  • displayNameKey is the value of the custom facet metadata field.

  • displayName is the display name of the facet.

    Note:

    If your business is supported in multiple languages, you can translate the newly added custom facets to the desired languages. See Translating Strings for Search Facets.
  • mappedSearchAttribute is used to map the custom facet with the search attribute. This value should be same as name attribute value in the search-service-attributes.xml metadata file.

  • dataType is the type of data. The available data types are keyword and date. This value should be same as the type value in the search-service-attributes.xml metadata file.
  • itemsToDisplay is an optional attribute that defines the maximum number of items to be displayed under a facet. If the value is not specified, the default value is configured using option Administration > Tools and Services > Search in WebCenter Portal.

    Note:

    This attribute is supported only if dataType keyword is used.

Based on your business needs, you can add or modify the list of the facets in the search-service-custom-facets.xml metadata file for any of the services available in Oracle WebCenter Portal, for example, you can add custom facets for documents, people and other services listed in the search-service-custom-facets.xml metadata file.

This section shows how to add a custom facet for the document service. To add custom facet for the document service, you need to first add a custom metadata field in Oracle WebCenter Content, and then rebuild the content index.

The following steps shows you how to add the custom facet for the document service:

  1. Adding a Custom Metadata Field in Oracle WebCenter Content
  2. Enable Faceted Search in Configuration Manager Applet
  3. Configuring the Search Setting Metadata
  4. Configuring the Search Custom Facet Metadata
  5. Update the Metadata for the Document in Your Portal
  6. Configuring the File Exclusion in Search Results

8.8.1 Adding a Custom Metadata Field in Oracle WebCenter Content

To add a custom facet for the document service, you need to begin with creating a metadata field in Oracle WebCenter Content. In this example, we'll create a new metadata field and name it as CustomMetadataField.
To add a custom metadata field in Oracle WebCenter Content:
  1. Log in to Oracle WebCenter Content server as a system administrator.
  2. On the WebCenter Content home page, expand Administration and select Admin Applets.
  3. On the Administration Applets page, click Configuration Manager.
  4. On the Configuration Manager page, click the Information Fields tab and click Add to add a new custom metadata field.
  5. In the Add Metadata Field Name dialog, enter the name of the metadata. For example, CustomMetadataField and click OK.

    Note:

    The metadata field name should be unique and the maximum field length is 29 characters. Use only letters, numbers, and underscores (_). Do not use spaces or other special characters.

  6. In the Add Metadata Field dialog, edit the following information:
    • Field Type: Select Long Text from the drop-down list.

    • Enable on User Interface: Select Enabled to display the field. If you don’t select the option, the field is hidden in the search pages.

    • Enable for Search Index: Select Indexed for the metadata field to be indexed for searching. If you don’t select the option, the field is not indexed nor does it appear on search pages.

  7. Click OK.
  8. In the Configuration Manager page, click Update Database Design and click OK to confirm.

8.8.2 Enable Faceted Search in Configuration Manager Applet

Desktop client application should be used to enable faceted search for the Custom Metadata field.

Complete the following steps to enable faceted search:
  1. Navigate to Configuration Manager Applet, and then to Advanced Search Design, select the field on which you want to enable faceted search and then click Edit.
  2. In the Advanced Options, select the field Is a filter category to enable the variable to participate in faceted search.
  3. After OK is clicked, the Rebuild Search Index button will be enabled. Click this button to rebuild the search index.

8.8.3 Configuring the Search Setting Metadata

You need to add the defined custom attribute in Oracle WebCenter Portal. For the new custom attribute to appear in the search settings page, you need to add or update the search-service-attributes.xml.

To add the defined custom attribute:
  1. At the WLST command prompt, run the exportMetadata WLST command to export the latest search-service-attributes.xml file from MDS repository:
    exportMetadata(application='webcenter', server='WC_Portal', toLocation='/tmp/mds_dump', docs='/oracle/webcenter/search/scopedMD/s8bba98ff_4cbb_40b8_beee_296c916a23ed/search-service-attributes.xml')
  2. Add the new search attribute field to the search-service-attributes.xml file within the section for id="oracle.webcenter.doclib". Set the type field to keyword.
    <service id="oracle.webcenter.doclib">
    .........................
    ......................
    <attribute name="custom_metadata_field" 
    displayNameKey="WC_CustomMetadataField"
    displayName="Custom Metadata Field"  type="keyword" 
    backendAttribute="xCustomMetadataField"/>
    </service>

    Note:

    The displayName attribute can be used to provide language support, displayName appears in Custom Attributes section of Search Settings in Portal.

    Oracle WebCenter Portal supports translations of strings to other languages. To translate the displayName attribute to other language, see Translating Strings for Custom Search Attributes.

  3. Save and import the updated search-service-attributes.xml file to the MDS repository using the importMetada WLST command:
     importMetadata(application='webcenter', server='WC_Portal', fromLocation='/tmp/mds_dump',docs='/oracle/webcenter/search/scopedMD/s8bba98ff_4cbb_40b8_beee_296c916a23ed/search-service-attributes.xml')
  4. Next, create a new facet and map that facet to the search attribute. See Configuring the Search Custom Facet Metadata.

8.8.4 Configuring the Search Custom Facet Metadata

In WebCenter Portal Search Setting page, you can select which facets to display with search results. This list in the Search Setting page is driven by the search-service-custom-facets.xml metadata file. It contains a list of facets used in WebCenter Portal. Each facet in the search-service-custom-facets.xml metadata file is mapped with a custom attribute using the mappedSearchAttribute attribute.

To configure the search custom facet metadata:
  1. At the WLST command prompt, run the exportMetadata WLST command to export the latest search-service-custom-facets.xml metadata file from MDS repository:
    exportMetadata(application='webcenter', server='WC_Portal', toLocation='/tmp/mds_dump',docs='/oracle/webcenter/search/scopedMD/s8bba98ff_4cbb_40b8_beee_296c916a23ed/search-service-custom-facets.xml')
  2. Open the search-service-custom-facets.xml file and create a new facet, and then map the facet to the search attribute.
    ?xml version='1.0' encoding='UTF-8'?>
    <search-service-custom-facets 
    xmlns="http://xmlns.oracle.com/webcenter/search/customfacets">
    .............................
    <custom-facet name="CustomFacet" dataType="keyword" 
    displayNameKey="WC_CustomFacet"
     displayName="Custom Facet" 
    mappedSearchAttribute="custom_metadata_field"/>
    </search-service-custom-facets>

    Where

    • custom-facet name is the name of the custom facet that you want to create.

      Note:

      dataType must be keyword, and the displayName attribute should be used to provide the language support, displayName appears in Facets section of Search Settings in portal.

      Oracle WebCenter Portal supports translations of strings to other languages. To translate the displayName attribute to other language, see Translating Strings for Search Facets.

    • mappedSearchAttribute is the attribute used to map the facet with custom attribute.

      Note:

      The mappedSearchAttribute attribute in the search-service-custom-facets.xml metadata file should contain the same value as specified in the name attribute of the search-service-attributes.xml metadata file. In this example, use custom_metadata_field.

  3. Save and import the search-service-custom-facets.xml metadata file to the MDS repository using the importMetada WLST command:
    importMetadata(application='webcenter', server='WC_Portal', fromLocation='/tmp/mds_dump',docs='/oracle/webcenter/search/scopedMD/s8bba98ff_4cbb_40b8_beee_296c916a23ed/search-service-custom-facets.xml'
  4. Log in to WebCenter Portal.
  5. Access the Search Settings page in portal administration and verify if the new attribute is appearing in the Facets and Custom attributes section.
  6. Select and move the newly added facet to the Included Facets section, then click Apply.

    In this example, select Custom Facet.

    This image shows Custom Facet in the Included Facets list.

  7. Select and move the newly added custom attribute to the Included Attributes section, then click Apply.

    In this example, select CustomMetadata Field.

8.8.5 Update the Metadata for the Document in Your Portal

Add the newly created metadata field value to the documents in your portal. In this example, CustomMetadataField.
To update metadata field value for document:
  1. In your portal, navigate to the document page.
  2. Select the document that you want to edit and click Properties from the More drop-down menu.

    Figure 8-9 Content Manager

    This figure shows the Document page.
  3. In the Metadata tab, locate the newly added metadata field, CustomMetadataField, and click Edit.
  4. Add a value for the newly created metadata field and click Save.

    Figure 8-10 Edit Document Metadata Tab

    Description of Figure 8-10 follows
    Description of "Figure 8-10 Edit Document Metadata Tab"
  5. Navigate to your portal and enter a search term in the global search field and click the search icon.

    The following figure shows search results that include the newly created facet, Custom Facet:

    Figure 8-11 Search Results with the Created Facet

    The figure shows a portal page with search results.

8.8.6 Configuring the File Exclusion in Search Results

You can configure to exclude certain file types from the search results. In order to exclude the file types, the file types have to be specified in the metadata file search-service-exclude-file-types.xml.

The following steps should be performed to configure the file exclusion in search results:
  1. Export Metadata Service Document
  2. Update the File Types to Filter
  3. Import Metadata Service Document
  4. Verifying File Exclusion in Search Results

Export Metadata Service Document

The location of the file in MDS is /oracle/webcenter/search/scopedMD/s8bba98ff_4cbb_40b8_beee_296c916a23ed/search-service-exclude-file-types.xml.

To export the metadata service document search-service-exclude-file-types.xml, enter the following command:
exportMetadata(application='webcenter', server='WC_Portal', toLocation='/tmp/search', docs='/oracle/webcenter/search/scopedMD/s8bba98ff_4cbb_40b8_beee_296c916a23ed/search-service-exclude-file-types.xml')

In the metadata service document search-service-exclude-file-types.xml, you can customize the file types to be excluded.

Update the File Types to Filter

The metadata describes how we can specify the files types which have to be excluded during the search.

<?xml version='1.0' encoding='UTF-8'?>
<search-service-exclude-file-types xmlns="http://xmlns.oracle.com/webcenter/search/excludefiletypes">
  <exclude-file-in-search>
    <fileType extension=".xml" customType="site-studio-file" description="Exclude Site Studio data files that have extension .xml"/>
    <fileType extension=".wav" description="Exclude all the file types with extension .wav"/>
    <fileType extension=".jpeg" description="Exclude all the file types with extension .jpeg"/>
  </exclude-file-in-search>
</search-service-exclude-file-types>
The following are a few important points about this metadata:
  • The extension of the file which we want to filter from the search has to be entered in this metadata file.
  • The customType attribute is optional. If we want to exclude the Site Studio data files in the search results, specify the customType as site-studio-file for extension ".xml".
  • The description attribute is optional. It explains the details of the files being excluded.

Import Metadata Service Document

To import the metadata service document search-service-exclude-file-types.xml, enter the following command:

importMetadata(application='webcenter', server='WC_Portal', fromLocation='/tmp/search', docs='/oracle/webcenter/search/scopedMD/s8bba98ff_4cbb_40b8_beee_296c916a23ed/search-service-exclude-file-types.xml')

Verifying File Exclusion in Search Results

To verify the file types exclusion, click the Search icon and specify the file type, for example, *.wav or *.jpeg, and notice that these file types are excluded in the search result. Similarly, search on the .xml file, and notice that the .xml files created in the Site Studio are excluded.

8.9 Scheduling a Crawl

You can schedule an incremental search crawl or manually start a full crawl or manually start a fast crawl or manually start a reindex crawl. The topics in this section describe how to schedule a crawl and how to start, enable, or disable a crawl.

8.9.1 Scheduling an Incremental Crawl

By default, the crawler is set to manual, but you can specify a different frequency, such as minutes, hourly or daily:
  1. On the Settings page (see Accessing the Settings Pages in WebCenter Portal Administration), click Tools and Services.

    You can also enter the following URL in your browser to navigate directly to the Tools and Services pages:

    http://host:port/webcenter/portal/admin/settings/tools
  2. Click the icon for Search to open the Search Settings page.
  3. On the Scheduler tab, select the crawl source and click Schedule to open the crawl source Schedule page.

    Figure 8-12 Elastic Search Schedule Portal Crawler


    This image shows the Schedule Portal Crawler page.

  4. From the Frequency Type list, select the required frequency type.
    Frequency Type Required Data to be Specified

    Manual Launch

    This is the default crawler frequency type. If you select Manual Launch, ensure that you start the schedule manually.

    Minutes

    If you select Minutes, specify the Time Between Launches in minutes.

    Allowed values: 10 to 59 minutes.

    Hourly

    If you select Hourly, specify the Time Between Launches in hours.

    Allowed values: 1 to 23 hours.

    Daily

    If you select daily, specify the Time Between Launches in days and specify the schedule launching time.

    Allowed values: 1 to 99 days and the time from 1 to 12 AM or PM

    Weekly

    If you select weekly, specify the Time Between Launches in weeks and specify the schedule launching time.

    Allowed values: 1 to 12 weeks and the time from 1 to 12 AM or PM.

  5. Click Save and Close.

8.9.2 Enabling and Disabling a Scheduled Crawl

When a crawl is in progress, you cannot disable it. To enable and disable the schedule defined for a crawl:
  1. On the Settings page (see Accessing the Settings Pages in WebCenter Portal Administration), click Tools and Services.

    You can also enter the following URL in your browser to navigate directly to the Tools and Services pages:

    http://host:port/webcenter/portal/admin/settings/tools
  2. Click the icon for Search to open the Search Settings page.
  3. On the Scheduler tab, select the crawl source that you want to modify and click Enable to activate the schedule defined for the crawl or click Disable to stop the crawl schedule.

8.9.3 Manually Starting a Full Crawl

You can manually start a full crawl to crawl all items in WebCenter Portal. Start a full crawl only during non-peak times as it is time-consuming. A full crawl must be manually started and cannot be scheduled to run automatically.

To start a full crawl:

  1. On the Settings page (see Accessing the Settings Pages in WebCenter Portal Administration), click Tools and Services.

    You can also enter the following URL in your browser to navigate directly to the Tools and Services pages:

    http://host:port/webcenter/portal/admin/settings/tools
  2. Click the icon for Search to open the Search Settings page.
  3. On the Scheduler tab, select the crawl source and click Schedule to open the crawl source Schedule page.

    Figure 8-13 Schedule Portal Crawler


    This image shows the Schedule Portal Crawler page.

  4. On the Scheduler tab, expand Crawl All Items and then click Start Crawl Now.
    WebCenter Portal immediately starts a full crawl for the selected crawl source.

8.9.4 Manually Starting an Incremental Crawl

You can manually start an incremental crawl to crawl only the items that have been created, updated, or deleted after the last crawl in WebCenter Portal.

To start an incremental crawl:
  1. On the Settings page (see Accessing the Settings Pages in WebCenter Portal Administration), click Tools and Services.

    You can also enter the following URL in your browser to navigate directly to the Tools and Services pages:

    http://host:port/webcenter/portal/admin/settings/tools
  2. Click the icon for Search to open the Search Settings page.
  3. On the Scheduler tab, select the crawl source and click Start.

    WebCenter Portal immediately starts an incremental crawl for the selected crawl source.

8.10 Customizing Search Settings in WebCenter Portal Administration

You can customize Result Types and Filtering, Search Scope, Facets, and Custom Attributes on the Search Settings page in WebCenter Portal Administration. Portal managers can reset only the search scope for the portals that they manage.

To customize search settings for Elasticsearch:

  1. On the Settings page (see Accessing the Settings Pages in WebCenter Portal Administration), click Tools and Services.

    You can also enter the following URL in your browser to navigate directly to the Tools and Services pages:

    http://host:port/webcenter/portal/admin/settings/tools
  2. Click the icon for Search to open the Search Settings page.

    Figure 8-14 Elasticsearch Settings

    The figure shows the search setting options in the Search Setting page, such as search scope, custom attributes.
  3. On the Search tab, select Enable filtering dropdown to enable filtering the search results based on selected services.

    Figure 8-15 Elastic Search Settings-Result Types and Filtering

    This figure shows the result types available in WebCenter Portal and Enable filtering dropdown is selected.
  4. Select the types of results to be included in the search result by moving them between the Available Result Types and Included Result Types.
  5. Set the search scope to include search results for the Home portal only or all portals (including the Home portal).

    Figure 8-16 Elasticsearch Settings - Search Scope

    This figure shows the available search scope. In this example, All Portals option is selected.
  6. Select which facets to display with search results and the order in which they appear by moving them between the Available Facets and Included Facets lists.

    Figure 8-17 Elasticsearch Settings - Facets

    This figure shows the available facets. There are two section, Available and Included.
  7. In the Custom Attributes section, select which custom search attributes should appear in search results and the order in which they appear by moving the attributes to the Included Attributes section.

    Figure 8-18 Elasticsearch Settings - Custom Attributes

    This figure shows the available Custom Attributes. There are two section, Available Attributes and Included.
  8. Click Apply.

8.11 Modifying Search Global Attributes

Note:

The attributes discussed below are of Elastisearch.

The attributes wcESConnectionTimeoutPeriod and wcESReadTimeoutPeriodare used to configure the interaction between WebCenter Portal and Elasticsearch.

The following are the attributes:

  • wcESConnectionTimeoutPeriod is the connection timeout interval, in seconds. This is the amount of time WebCenter Portal will wait to establish the connection to the Elasticsearch server. The default value is 30 seconds.

  • wcESReadTimeoutPeriod is the read timeout interval, in seconds. Once WebCenter Portal is connected to the Elasticsearch server, this specifies the amount of time allowed for the Elasticsearch server to respond in a given request. The default value is 30 seconds.

You can modify the default value of the attributes in Attributes page in WebCenter Portal administration. After you modify the value, you must restart the WebCenter Portal server for the changes to take effect.

To modify the default value:
  1. On the Settings page, click Attributes.

    Figure 8-19 Attributes for Elasticsearch Settings

    This screenshot shows the Attributes page.
  2. On the Attributes page, click the Actions icon for the attribute and select Edit Attribute.
  3. In the Edit Attribute dialog, modify the attribute Value.
  4. Click OK.
  5. Restart WebCenter Portal.