Saturday, 18 July 2015

Updating portal/wcm properties via config engine tasks

Websphere portal maintains lot of configurations in property files and resource environment entries. One way to edit them is via logging into was console other way is to edit the property files. Values in was console rep entries will take higher order than property files.If you want to modify large number of values in property files then you can perform the changes and run appropriate task based on properties belong to portal or wcm config.


For changes to WebSphere Portal properties files to take effect, run the following task from the  wp_profile_root/ConfigEngine directory.
Windows: ConfigEngine.bat update-properties -DPortalAdminPwd=password -DWasUserid=username -DWasPassword=password
AIX® Linux Solaris: ./ConfigEngine.sh update-properties -DPortalAdminPwd=password -DWasUserid=username -DWasPassword=password
IBM i: ConfigEngine.sh update-properties -DPortalAdminPwd=password -DWasUserid=username -DWasPassword=password
z/OS: ./ConfigEngine.sh update-properties -DPortalAdminPwd=password -DWasUserid=username -DWasPassword=password

For changes to Web Content Manager properties files, run the following task from the wp_profile_root/ConfigEngine directory.:-
Windows: ConfigEngine.bat update-wcm-service-properties -DPortalAdminPwd=password -DWasUserid=username -DWasPassword=password
AIX Linux Solaris: ./ConfigEngine.sh update-wcm-service-properties -DPortalAdminPwd=password -DWasUserid=username -DWasPassword=password
IBM i: ConfigEngine.sh update-wcm-service-properties -DPortalAdminPwd=password -DWasUserid=username -DWasPassword=password
z/OS: ./ConfigEngine.sh update-wcm-service-properties -DPortalAdminPwd=password -DWasUserid=username -DWasPassword=password

List of possible configuration parameters :- 

WebSphere Portal serviceService name in the WebSphere Integrated Solutions ConsoleWebSphere Portal properties file
Administrator Unique Names Mapping ServiceWP AdminUniqueNamesMappingServiceAdminUniqueNamesMappingService.properties
Cache Manager ServiceWP CacheManagerServiceCacheManagerService.properties
Common Component Configuration ServiceWP CommonComponentConfigServiceCommonComponentConfigService.properties
Configuration ServiceWP ConfigServiceConfigService.properties
CP Configuration Service for tagging and ratingWP CPConfigurationServiceCPConfigurationService.properties
Content Access ServiceWP PortletServiceRegistryService
See Content Access Service.
PortletServiceRegistryService.properties
See Content Access Service.
Data Store ServiceWP DataStoreServiceDataStoreService.properties
Deployment ServiceWP DeploymentServiceDeploymentService.properties
HTTP Client ServiceWP HTTPClientServiceHTTPClientService.properties
Live Object ServiceWP LiveObjectServiceLiveObjectService.properties
Loader ServiceWP LoaderServiceLoaderService.properties
Localizer ServiceWP LocalizerServiceLocalizerService.properties
Model WebDAV ServiceWP ModelWebDAVServiceModelWebDAVService.properties
Navigator ServiceWP NavigatorServiceNavigatorService.properties
Pipe Pool ServiceWP PipePoolServicePipePoolService.properties
Portlet Container Service.
See also Enabling parallel portlet rendering
WP PortletContainerServicePortletContainerService.properties
Project Identification ServiceWP ProjectIdentificationServiceProjectIdentificationService.properties
Registry ServiceWP RegistryServiceRegistryService.properties
State Manager Service
See also URL normalization for search of portal pages by external search engines
WP StateManagerServiceStateManagerService.properties
Virtual Portal Configuration ServiceWP VirtualPortalConfigServiceVirtualPortalConfigService.properties
Table 2. WebSphere Portal security services
WebSphere Portal security serviceService name in the WebSphere Integrated Solutions ConsoleWebSphere Portal properties file
Authentication ServiceWP AuthenticationServiceAuthenticationService.properties
Credential Vault ServiceWP VaultServiceVaultService.properties
Portal Access Control Services  
    Access Control Data Management ServiceWP AccessControlDataManagementServiceAccessControlDataManagementService.properties
    External Access Control ServiceWP ExternalAccessControlServiceExternalAccessControlService.properties
    Auditing ServiceWP AuditServiceAuditService.properties
    Access Control ServiceWP AccessControlServiceAccessControlService.properties
    Access Control WarmUp ServiceWP AccessControlWarmUpServiceAccessControlWarmUpService.properties
    PAC Group Management ServiceWP PACGroupManagementServicePACGroupManagementService.properties
Puma Store and Validation Services  
    Puma Store ServiceWP PumaStoreServicePumaStoreService.properties
    Puma Validation ServiceWP ValidationServiceValidationService.properties
Table 3. Other WebSphere Portal configuration services
WebSphere Portal serviceService name in the WebSphere Integrated Solutions ConsoleWebSphere Portal properties file
Credential Type Registry ServiceWP CredentialTypeRegistryServiceCredentialTypeRegistryService.properties
Dynamic UI Manager Factory ServiceWP DynamicUIManagerFactoryServiceDynamicUIManagerFactoryService.properties
IdentificationWP IdentificationIdentification.properties
Plugin Manager ServiceWP PluginManagerServicePluginManagerService.properties
Portal Filter ServiceWP PortalFilterServicePortalFilterService.properties
PortletFilterServiceWP PortletFilterServicePortletFilterService.properties
Site Analyzer Log ServiceWP SiteAnalyzerLogServiceSiteAnalyzerLogService.properties
Virtual Portal Identification ServiceWP VirtualPortalIdentificationServiceVirtualPortalIdentificationService.properties
WSRP Web Service SecurityWP WSRPWebServiceSecurityWSRPWebServiceSecurity.properties
Web Content ServiceWP WebContentServiceWebContentService.properties
Work Manager ServiceWP WorkManagerServiceWorkManagerService.properties
Table 4. Web Content Manager services
Web Content Manager serviceService name in the WebSphere Integrated Solutions ConsoleProperties file
Configuration ServiceWCM_WCMConfigServiceWCMConfigService.properties
Messaging ServiceWCM_MessagingServiceMessagingService.properties
Prerendering SrviceWCM_PrerenderServicePrerenderService.properties
Search ServiceWCM_SearchServiceSearchService.properties

No comments:

Post a Comment

Custom single threaded java server

 package com.diffengine.csv; import java.io.*; import java.net.*; import java.util.Date; public class Server { public static void main(Str...