Movatterモバイル変換


[0]ホーム

URL:


In: content-servicesIn: All docs
Close
Alfresco Content Services

Java Management Extension (JMX) reference

The Java Management Extensions (JMX) framework was introduced in Java 1.5 and has found widespread acceptance in the Java developers community since its inception.

It provides an easily configurable, scalable, reliable and more or less friendly infrastructure for managing Java application either locally or remotely. The framework introduces the concept of MBeans for real-time management of applications.

This information explains the individual MBean types exported by Content Services. The heading for each MBean type provides the JMX object naming scheme, where possible. Each section lists the individual properties for the MBean type.

Alfresco Global Properties available in a JMX client

The following is summary of thealfresco-global.properties that can be viewed and changed in a JMX client.

WARNING: Be aware that anychanges you make to attributes/properties in the live system are written to the database. The next time that Content Services starts, these values will take precedence over any values specified in properties files, for example,alfresco-global.properties.

alfresco.authentication.allowGuestLoginSpecifies whether to allow guest access.
authentication.chainSpecifies the authentication chain.
synchronization.autoCreatePeopleOnLoginSpecifies whether to create a user with default properties when a user is successfully authenticated, who does not yet exist in Content Services, and was not returned by a differential sync (if enabled with the specified property). The default istrue. Setting this tofalse allows you to restrict Content Services to a subset of those users who could be authenticated by LDAP; only those created by synchronization are allowed to log in. You can control the set of users in this more restricted set by overriding the user query properties of the LDAP authentication subsystem
synchronization.import.cronSpecifies a cron expression defining when the scheduled synchronization job should run, by default at midnight every day.
synchronization.loggingIntervalSpecifies the number of user or group entries the synchronization subsystem will process before logging progress at INFO level. If you have the following default entry inlog4j.properties:

log4j.logger.org.alfresco.repo.security.sync=info. The default is100.
synchronization.syncOnStartupSpecifies whether to trigger a differential sync when the subsystem starts up. The default istrue. This ensures that when user registries are first configured, the bulk of the synchronization work is done on server startup, rather than on the first login.
synchronization.syncWhenMissingPeopleLogInSpecifies whether to trigger a differential sync when a user is successfully authenticated who does not yet exist in Content Services. The default istrue.
synchronization.synchronizeChangesOnlySpecifies if the scheduled synchronization job is run in differential mode. The default isfalse, which means that the scheduled sync job is run in full mode. Regardless of this setting a differential sync can still be triggered when a user is successfully authenticated who does not yet exist in Content Services.
synchronization.workerThreadsSpecifies the number of worker threads. For example,2.
filesystem.acl.global.defaultAccessLevelSpecifies the default access level. Directly names the access control level (None, Read or Write) that applies to requests that are not in scope of any other access control. Note that it’s not valid to use the value None without defining other access controls.
filesystem.acl.global.domainAccessControlsSpecifies the set of access controls with domain scope. This is a composite property whose value should be a comma-separated list of domain names. To define the access level for one of the listed domains, use the propertyfilesystem.acl.global.domainAccessControls.value.<domain>.accessType.

The example below defines Read level access forDOMAIN1 and Write level access forDOMAIN2.<br
filesystem.acl.global.domainAccessControls=DOMAIN1,DOMAIN2

filesystem.acl.global.domainAccessControls.value.DOMAIN1.accessType=Read

filesystem.acl.global.domainAccessControls.value.DOMAIN2.accessType=Write
filesystem.acl.global.protocolAccessControlsSpecifies the set of access controls with protocol scope. This is a composite property whose value should be a comma-separated list of access control names.

To define the access level for a named access control and the set of protocols to which it applies, use the properties:

filesystem.acl.global.protocolAccessControls.value.<Name>.accessType<br>

filesystem.acl.global.protocolAccessControls.value.<Name>.checkList

Protocols can include NFS and FTP.

The example below defines Read level access for NFS and Write level access for FTP.

filesystem.acl.global.protocolAccessControls=nfs,ftp

filesystem.acl.global.protocolAccessControls.value.nfs.accessType=Read

filesystem.acl.global.protocolAccessControls.value.nfs.checkList=NFS

filesystem.acl.global.protocolAccessControls.value.others.accessType=Write

filesystem.acl.global.protocolAccessControls.value.others.checkList=FTP
filesystem.acl.global.userAccessControlsSpecifies the set of access controls with user scope. This is a composite property whose value should be a comma-separated list of user names.

To define the access level for one of the listed users, use the propertyfilesystem.acl.global.userAccessControls.value.<user>.accessType.

The example below defines Read level access for user1 and Write level access for user2.

filesystem.acl.global.userAccessControls=user1,user2

filesystem.acl.global.userAccessControls.value.user1.accessType=Read

filesystem.acl.global.userAccessControls.value.user2.accessType=Write
ftp.enabledEnables or disables the FTP server.
ftp.ipv6.enabledEnables or disables the IPv6 FTP server.
ftp.portSpecifies the port that the FTP server listens for incoming connections on. Defaults to port 21.
imap.config.home.folderPathSpecifies the default locations for the IMAP mount point. For example,Imap Home.
imap.config.home.rootPathSpecifies the default location for the IMAP mount point. For example,/${spaces.company_home.childname}.
imap.config.home.storeSpecifies the default location for the IMAP mount point. For example,${spaces.store}.
imap.config.ignore.extractionDefines whether or not attachments are extracted.
imap.config.server.mountPointsSpecifies the list of mount points. For example,AlfrescoIMAP.
imap.server.enabledEnables or disables the IMAP server. This is set tofalse, by default.
imap.server.hostSpecifies the host for the IMAP server.
imap.server.portSpecifies the port number for the IMAP server. For example,143.
imap.config.server.mountPoints.value.AlfrescoIMAP.modeNameSpecifies theAlfrescoIMAP mount point access mode name. For example,MIXED.
imap.config.server.mountPoints.default.rootPathSpecifies the root path for the mount point.
imap.config.server.mountPoints.value.AlfrescoIMAP.mountPointNameSpecifies the mount point name.
imap.config.server.mountPoints.default.storeSpecifies the default store for the mount point.
server.allowedusersA comma-separated list of users who are allowed to log in. Leave empty if all users are allowed to log in.
server.maxusersThe maximum number of users who are allowed to log in or -1 if there is no limit.
server.transaction.allow-writesA Boolean property that whentrue indicates that the repository will allow write operations (provided that the license is valid). Whenfalse the repository is in read-only mode.

JMX read-only MBeans

JMX values (Managed Bean or MBean attributes) are exposed in the Admin Console and with internal tools (JMX Dump) or external tools like JConsole. The read-only beans are described here with example values.

Alfresco:Name=Authority

Object Type =org.alfresco.enterprise.repo.management.Authority

Exposes the number of groups and users known to the Authority Service.

Attribute nameExample value
NumberOfGroups7
NumberOfUsers4

Alfresco:Name=BatchJobs

Object Types =org.alfresco.enterprise.repo.management.BatchMonitor and org.alfresco.enterprise.repo.management.SyncMonitorMBean

Exposes the settings for the last run batch job, including the start and end times, number of errors and synchronization settings. There are two types in this bean:FeedNotifier andSynchronization.

Attribute nameExample value
EndTimeFormat:Thu Jul 03 00:00:00 BST 2014
StartTimeFormat:Thu Jul 03 00:00:00 BST 2014
LastErrorblank
TotalErrorsblank
SuccessfullyProcessedEntriesblank
TotalResultsblank
ProcessNameFeedNotifier
CurrentEntryIDPerson admin
LastErrorEntryIDblank
PercentCompleteblank
LastErrorMessage<null>
LastRunOnServer127.0.0.1:8080
SyncEndTimeFormat:Thu Jun 26 13:49:45 BST 2014
SyncStartTimeFormat:Thu Jun 26 13:49:45 BST 2014
SynchronizationStatusCOMPLETE

Alfresco:Name=CacheStatistics

Object Type =org.alfresco.enterprise.repo.management.CacheStatisticsMBeanImpl

Exposes statistics for the caches that are available. Cache name follows the patternorg.alfresco.*TransactionalCache. The following attributes are available for each cache:

Attribute nameDescription
ClearTimeThe mean time, in nanoseconds, for the cache to complete clearing (that is, to empty ordrop the entire cache contents). For example,NaN.
ClearsThe number of times that the cache has been cleared (that is, emptied, ordropped).
GetsThe number of times that the cache has had a value requested from it. This includes cache hits, where the cache contains a value, but omits where the cache reports that there is no value corresponding to a particular key.
HitMissRatioThe hit ratio for the given cache. A value of 1.0 is the maximum indicating that every request has been honored (that is, all GET requests arehits). A value of0.0 represents a cache that has never successfully returned a previously cached value (that is, all GET requests aremisses). Expected value: numeric with decimals
HitTimeThe mean time, in nanoseconds, for GET operations to complete, where a value has been found in the cache. Expected value: numeric with decimals.
HitsThe number of times that a GET request is successful.
MissTimeThe mean time, in nanoseconds, for GET requests, where a result is not returned (amiss). Expected value: numeric with decimals.
MissesThe number of times that a GET request is not successful.
PutTimeThe mean time, in nanoseconds, for inserting a value into the cache. Expected value: numeric with decimals.
PutsThe number of times a value is inserted into the cache (a PUT operation).
RemoveTimeThe mean time, in nanoseconds, for removing a value from cache. For example,NaN.
RemovesThe number of removal operations applied to the cache, where a value is successfully removed from the cache.
Attribute nameExample value
AveragePullRequestTime0
AveragePushRequestTime0
CurrentPullRequests0
CurrentPushRequests0
PullRequestFailureCount0
PullRequestSuccessCount0
PushRequestFailureCount0
PushRequestSuccessCount0
TotalPullRequestCount0
TotalPushRequestCount0

Alfresco:Name=Cluster

Object Types=org.alfresco.enterprise.repo.management.ClusterAdmin and org.alfresco.enterprise.repo.management.ClusterInfo

Exposes information about repository server clustering.

See the Repo Admin ConsoleRepository Services > Repository Server Clustering for information about these attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-clustering.

Alfresco:Name=ConnectionPool

Object Type =org.apache.commons.dbcp.BasicDataSource

Allows monitoring of the Apache Commons DBCP database connection pool and its configuration.

AttributeDescription
DefaultTransactionIsolationThe JDBC code number for the transaction isolation level, corresponding to those in thejava.sql.Connection class. The special value of-1 indicates that the database’s default transaction isolation level is in use and this is the most common setting. For the Microsoft SQL Server JDBC driver, the special value of4096 indicates snapshot isolation.
DriverClassNameThe fully-qualified name of the JDBC driver class, for exampleorg.postgresql.Driver.
InitialSizeThe number of connections opened when the pool is initialized, for example10.
MaxActiveThe maximum number of connections in the pool, for example40.
MaxIdleThe maximum number of connections that are not in use kept open, for example-1.
MaxWaitThe maximum number of milliseconds to wait for a connection to be returned before throwing an exception (when connections are unavailable) or-1 to wait indefinitely.
MinEvictableIdleTimeMillisThe minimum number of milliseconds that a connection can sit idle before it is eligible for eviction, for example1800000.
MinIdleThe minimum number of connections in the pool, for example0.
NumActiveThe number connections in use (useful monitoring metric), for example2.
NumIdleThe number of connections that are not in use (another useful monitoring metric), for example8.
RemoveAbandonedA boolean that whentrue indicates that a connection is considered abandoned and eligible for removal if it has been idle longer than theRemoveAbandonedTimeout, for examplefalse.
RemoveAbandonedTimeoutThe time in seconds before an abandoned connection can be removed, for example300.
TestOnBorrowA boolean that whentrue indicates that connections will be validated before being borrowed from the pool, for examplefalse.
TestOnReturnA boolean that whentrue indicates that connections will be validated before being returned to the pool, for examplefalse.
TestWhileIdleA boolean that whentrue indicates that connections will be validated while they’re idle, for examplefalse.
TimeBetweenEvictionRunsMillisThe number of milliseconds to sleep between eviction runs, when greater than zero, for example-1.
UrlThe JDBC URL to the database connection, for examplejdbc:postgresql://localhost:5432/alfresco.
UsernameThe name used to authenticate with the database, for examplealfresco.
ValidationQueryThe SQL query that will be used to validate connections before returning them, for example<null>.

Alfresco:Name=ContentStore

Object Type =org.alfresco.enterprise.repo.management.ContentStore

Allows monitoring of each content store. WhenType=FileContentStore, the Root attribute of the name holds the file system path to the store. Specific attributes exposed are the total space (and also free space) in the content store, in bytes, and whether the store allows write operations.

Attribute nameExample value
SpaceFree33434923008
SpaceTotal64422408192
WriteSupportedtrue

Alfresco:Name=ContentTransformer

Object Type =org.alfresco.repo.content.transform.ContentTransformer

Exposes key information about the transformation utilities relied upon by Content Services.

There are two instances:

  • Alfresco:Name=ContentTransformer,Type=Configuration
  • Alfresco:Name=ContentTransformer,Type=ImageMagick

The following properties are exposed forType=Configuration:

Attribute nameExample value
ContextNames[ , doclib , index , webpreview , syncRule , asyncRule ]
CustomePropertyNamescontent.transformer.PdfBox.extensions.pdf.txt.maxSourceSizeKBytes
ExtensionsAndMimetypes[ 3fr - image/x-raw-hasselblad , 3g2 - video/3gpp2 , 3gp - video/3gpp , acp - application/acp , aep - application/vnd.adobe.aftereffects.project , aet - application/vnd.adobe.aftereffects.template , ai - application/illustrator , aiff - audio/x-aiff , air - application/vnd.adobe.air-application-installer-package+zip , apk - application/vnd.android.package-archive , arw - image/x-raw-sony , asf - video/x-ms-asf , asnd - audio/vnd.adobe.soundbooth , au - audio/basic , avi - video/x-msvideo , avx - video/x-rad-screenplay , bcpio - application/x-bcpio , bin - application/octet-stream , bmp - image/bmp , cdf - application/x-netcdf , cer - application/x-x509-ca-cert , cgm - image/cgm , class - application/java , cpio - application/x-cpio , cr2 - image/x-raw-canon , csh - application/x-csh , css - text/css , csv - text/csv , dita - application/dita+xml , dng - image/x-raw-adobe , doc - application/msword , docm - application/vnd.ms-word.document.macroenabled.12 , docx - application/vnd.openxmlformats-officedocument.wordprocessingml.document , dotm - application/vnd.ms-word.template.macroenabled.12 , dotx - application/vnd.openxmlformats-officedocument.wordprocessingml.template , dvi - application/x-dvi , dwg - image/vnd.dwg , dwt - image/x-dwt , eml - message/rfc822 , eps - application/eps , etx - text/x-setext , fla - application/x-fla , flac - audio/x-flac , flv - video/x-flv , fm - application/framemaker , fxp - application/x-zip , gif - image/gif , gml - application/sgml , gtar - application/x-gtar , gzip - application/x-gzip , hdf - application/x-hdf , hqx - application/mac-binhex40 , html - text/html , ics - text/calendar , ief - image/ief , indd - application/x-indesign , jp2 - image/jp2 , jpg - image/jpeg , js - application/x-javascript , json - application/json , k25 - image/x-raw-kodak , key - application/vnd.apple.keynote , latex - application/x-latex , m4a - audio/mp4 , m4v - video/x-m4v , man - application/x-troff-man , md - text/x-markdown , me - application/x-troff-me , mif - application/x-mif , mov - video/quicktime , movie - video/x-sgi-movie , mp3 - audio/mpeg , mp4 - video/mp4 , mpeg2 - video/mpeg2 , mpg - video/mpeg , mpp - application/vnd.ms-project , mrw - image/x-raw-minolta , ms - application/x-troff-mes , msg - application/vnd.ms-outlook , mw - text/mediawiki , nef - image/x-raw-nikon , numbers - application/vnd.apple.numbers , oda - application/oda , odb - application/vnd.oasis.opendocument.database , odc - application/vnd.oasis.opendocument.chart , odf - application/vnd.oasis.opendocument.formula , odg - application/vnd.oasis.opendocument.graphics , odi - application/vnd.oasis.opendocument.image , odm - application/vnd.oasis.opendocument.text-master , odp - application/vnd.oasis.opendocument.presentation , ods - application/vnd.oasis.opendocument.spreadsheet , odt - application/vnd.oasis.opendocument.text , oga - audio/ogg , ogg - audio/vorbis , ogv - video/ogg , ogx - application/ogg , orf - image/x-raw-olympus , otg - application/vnd.oasis.opendocument.graphics-template , oth - application/vnd.oasis.opendocument.text-web , otp - application/vnd.oasis.opendocument.presentation-template , ots - application/vnd.oasis.opendocument.spreadsheet-template , ott - application/vnd.oasis.opendocument.text-template , pages - application/vnd.apple.pages , pbm - image/x-portable-bitmap , pdf - application/pdf , pef - image/x-raw-pentax , pgm - image/x-portable-graymap , pmd - application/pagemaker , png - image/png , pnm - image/x-portable-anymap , potm - application/vnd.ms-powerpoint.template.macroenabled.12 , potx - application/vnd.openxmlformats-officedocument.presentationml.template , ppam - application/vnd.ms-powerpoint.addin.macroenabled.12 , ppj - image/vnd.adobe.premiere , ppm - image/x-portable-pixmap , ppsm - application/vnd.ms-powerpoint.slideshow.macroenabled.12 , ppsx - application/vnd.openxmlformats-officedocument.presentationml.slideshow , ppt - application/vnd.ms-powerpoint , pptm - application/vnd.ms-powerpoint.presentation.macroenabled.12 , pptx - application/vnd.openxmlformats-officedocument.presentationml.presentation , prn - application/remote-printing , ps - application/postscript , psd - image/vnd.adobe.photoshop , r3d - image/x-raw-red , raf - image/x-raw-fuji , ras - image/x-cmu-raster , rgb - image/x-rgb , rss - application/rss+xml , rtf - application/rtf , rtx - text/richtext , rw2 - image/x-raw-panasonic , rwl - image/x-raw-leica , sda - application/vnd.stardivision.draw , sdc - application/vnd.stardivision.calc , sdd - application/vnd.stardivision.impress , sdp - application/vnd.stardivision.impress-packed , sds - application/vnd.stardivision.chart , sdw - application/vnd.stardivision.writer , sgl - application/vnd.stardivision.writer-global , sgml - text/sgml , sh - application/x-sh , shar - application/x-shar , sldm - application/vnd.ms-powerpoint.slide.macroenabled.12 , sldx - application/vnd.openxmlformats-officedocument.presentationml.slide , smf - application/vnd.stardivision.math , src - application/x-wais-source , stc - application/vnd.sun.xml.calc.template , sti - application/vnd.sun.xml.impress.template , stw - application/vnd.sun.xml.writer.template , sv4cpio - application/x-sv4cpio , sv4crc - application/x-sv4crc , svg - image/svg+xml , sxc - application/vnd.sun.xml.calc , sxd - application/vnd.sun.xml.draw , sxi - application/vnd.sun.xml.impress , sxw - application/vnd.sun.xml.writer , tar - application/x-tar , tcl - application/x-tcl , tex - application/x-tex , texinfo - application/x-texinfo , tiff - image/tiff , tr - application/x-troff , ts - video/mp2t , tsv - text/tab-separated-values , txt - text/plain , ustar - application/x-ustar , vsd - application/vnd.visio , wav - audio/x-wav , webm - video/webm , wma - audio/x-ms-wma , wmv - video/x-ms-wmv , wpd - application/wordperfect , wrl - x-world/x-vrml , x3f - image/x-raw-sigma , xbm - image/x-xbitmap , xdp - application/vnd.adobe.xdp+xml , xhtml - application/xhtml+xml , xlam - application/vnd.ms-excel.addin.macroenabled.12 , xls - application/vnd.ms-excel , xlsb - application/vnd.ms-excel.sheet.binary.macroenabled.12 , xlsm - application/vnd.ms-excel.sheet.macroenabled.12 , xlsx - application/vnd.openxmlformats-officedocument.spreadsheetml.sheet , xltm - application/vnd.ms-excel.template.macroenabled.12 , xltx - application/vnd.openxmlformats-officedocument.spreadsheetml.template , xml - text/xml , xpm - image/x-xpixmap , xwd - image/x-xwindowdump , z - application/x-compress , zip - application/zip ]
TestFileExtensionsAndMimetypes[ 3g2 - video/3gpp2 , 3gp - video/3gpp , acp - application/acp , asf - video/x-ms-asf , avi - video/x-msvideo , bmp - image/bmp , doc - application/msword , docx - application/vnd.openxmlformats-officedocument.wordprocessingml.document , eml - message/rfc822 , eps - application/eps , flv - video/x-flv , gif - image/gif , html - text/html , jpg - image/jpeg , m4a - audio/mp4 , m4v - video/x-m4v , mov - video/quicktime , mp3 - audio/mpeg , mp4 - video/mp4 , mpg - video/mpeg , msg - application/vnd.ms-outlook , odf - application/vnd.oasis.opendocument.formula , odg - application/vnd.oasis.opendocument.graphics , odp - application/vnd.oasis.opendocument.presentation , ods - application/vnd.oasis.opendocument.spreadsheet , odt - application/vnd.oasis.opendocument.text , ogg - audio/vorbis , ogv - video/ogg , otg - application/vnd.oasis.opendocument.graphics-template , otp - application/vnd.oasis.opendocument.presentation-template , ots - application/vnd.oasis.opendocument.spreadsheet-template , ott - application/vnd.oasis.opendocument.text-template , pdf - application/pdf , png - image/png , ppt - application/vnd.ms-powerpoint , pptx - application/vnd.openxmlformats-officedocument.presentationml.presentation , sda - application/vnd.stardivision.draw , sdc - application/vnd.stardivision.calc , sdd - application/vnd.stardivision.impress , sdw - application/vnd.stardivision.writer , smf - application/vnd.stardivision.math , sxc - application/vnd.sun.xml.calc , sxd - application/vnd.sun.xml.draw , sxi - application/vnd.sun.xml.impress , sxw - application/vnd.sun.xml.writer , tar - application/x-tar , tiff - image/tiff , txt - text/plain , vsd - application/vnd.visio , webm - video/webm , wma - audio/x-ms-wma , wmv - video/x-ms-wmv , wpd - application/wordperfect , xls - application/vnd.ms-excel , xlsx - application/vnd.openxmlformats-officedocument.spreadsheetml.sheet , xml - text/xml , zip - application/zip ]
TransformerNames[ Archive , BinaryPassThrough , HtmlParser , ImageMagick , JodConverter , JodConverter.2Pdf , JodConverter.Html2Pdf , MediaWikiParser , OOXML , OOXMLThumbnail , Office , OutlookMsg , PdfBox , PdfBox.TextToPdf , Poi , RFC822 , StringExtracter , TextMining , TikaAuto , complex.Any.Image , complex.JodConverter.Image , complex.JodConverter.PdfBox , complex.OutlookMsg2Image , complex.PDF.Image, complex.Text.Image , complex.iWorks.Image , double.ImageMagick , iWorksQuicklooks ]

The following properties are exposed forType=ImageMagick.Available indicates whether the utility is installed correctly and was found when Content Services started up, andVersionString indicates the version information returned by the utility:

Attribute nameExample value
Availabletrue
VersionStringVersion: ImageMagick 6.8.6-6 2013-07-16 Q8 http://www.imagemagick.org

Alfresco:Name=CustomModel

Object Type =org.alfresco.enterprise.repo.management.CustomModelsInfoMBeanImpl

Exposes information about the number of active aspects, models, and types.

Attribute nameExample value
CustomModelsStatistics[]

Alfresco:Name=DatabaseInformation

Object Type =org.alfresco.enterprise.repo.management.Database

Exposes metadata about the database itself, including database, driver and JDBC information, and the name used to authenticate with the database.

Attribute nameExample value
DatabaseMajorVersion9
DatabaseMinorVersion2
DatabaseProductNamePostgreSQL
DatabaseProductVersion9.2.4
DriverMajorVersion9
DriverMinorVersion0
DriverNamePostgreSQL Native Driver
DriverVersionPostgreSQL 9.0 JDBC4 (build 802)
JDBCMajorVersion4
JDBCMinorVersion0
StoresLowerCaseIdentifierstrue
StoresLowerCaseQuotedIdentifiersfalse
StoresMixedCaseIdentifiersfalse
StoresMixedCaseQuotedIdentifiersfalse
StoresUpperCaseIdentifiersfalse
StoresUpperCaseQuotedIdentifiersfalse
URLjdbc:postgresql://localhost:5432/alfresco
UserNamealfresco

Alfresco:Name=Encryption

Object Type =org.alfresco.enterprise.encryption.management.AlfrescoKeyStoreBean

Exposes information about the location and backup location of encryption methods used by Content Services.

There are three types of keystore:

  • Alfresco:Name=Encryption,Type=Key Store
  • Alfresco:Name=ContentTransformer,Type=SSL Key Store
  • Alfresco:Name=ContentTransformer,Type=SSL Trust Store

The following properties are exposed forType=Key Store:

Attribute nameExample value
BackupLocationC:/Alfresco/alf_data/keystore/backup-keystore
LocationC:/Alfresco/alf_data/keystore/keystore

The following properties are exposed forType=SSL Key Store:

Attribute nameExample value
BackupLocation<not readable>
LocationC:/Alfresco/alf_data/keystore/ssl.keystore

The following properties are exposed forType=SSL Trust Store:

Attribute nameExample value
BackupLocation<not readable>
LocationC:/Alfresco/alf_data/keystore/ssl.truststore

Alfresco:Name=FileServerConfig

Object Type =com.sun.proxy.$Proxy108

Allows management and monitoring of the FTP server configured in Content Services. See the Admin Console Virtual File Systems - File Servers for information about these attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-fileservers.

Alfresco:Name=GlobalProperties

Object Type =org.alfresco.enterprise.repo.management.PropertiesDynamicMBean

Exposes the default configuration settings that are present in the alfresco-global.properties file.

Attribute nameExample value
;default filesystem target configuration
;Whereshould the root of the web project be stored, by default/www/avm_webapps
V2.1-A.fixes.to.schema0
activities.feed.fetchBatchSize150
activities.feed.generator.jsonFormatOnlytrue
activities.feed.max.ageMins44640
activities.feed.max.idRange1000000
activities.feed.max.size200
activities.feedNotifier.batchSize200
activities.feedNotifier.numThreads2
alfresco.authentication.gateway.bufferSize2048
alfresco.authentication.gateway.connectTimeout10000
alfresco.authentication.gateway.hostblank
alfresco.authentication.gateway.httpConnectionStalechecktrue
alfresco.authentication.gateway.httpTcpNodelaytrue
alfresco.authentication.gateway.inboundHeadersX-Alfresco-Authenticator-Key,X-Alfresco-Remote-User
alfresco.authentication.gateway.outboundHeadersAuthorization,key
alfresco.authentication.gateway.port443
alfresco.authentication.gateway.prefixUrl/publicapi
alfresco.authentication.gateway.protocolhttps
alfresco.authentication.gateway.readTimeout120000
alfresco.cluster.enabledtrue
alfresco.cluster.hostname${localname}
alfresco.cluster.interfaceblank
alfresco.cluster.max.init.retries50
alfresco.cluster.nodetype"Repository server"
alfresco.clusterCheck.timeout4000
alfresco.contextalfresco
alfresco.hazelcast.autoinc.portfalse
alfresco.hazelcast.configLocationclasspath:alfresco/hazelcast/hazelcast-tcp.xml
alfresco.hazelcast.ec2.accesskeymy-access-key
alfresco.hazelcast.ec2.regionus-east-1
alfresco.hazelcast.ec2.secretkeymy-secret-key
alfresco.hazelcast.ec2.securitygroupblank
alfresco.hazelcast.ec2.tagkeytype
alfresco.hazelcast.ec2.tagvaluehz-nodes
alfresco.hazelcast.mancenter.enabledfalse
alfresco.hazelcast.mancenter.urlhttp://localhost:8080/mancenter
alfresco.hazelcast.port5701
alfresco.hazelcast.tcp.config<members></members>
alfresco.host127.0.0.1
alfresco.port8080
alfresco.protocolhttp
alfresco.rmi.services.external.host0.0.0.0
alfresco.rmi.services.port50500
alfresco.rmi.services.retries4
alfresco_user_store.adminpassword209c6174da490caeb422f3fa5a7ae634
alfresco_user_store.adminusernameadmin
alfresco_user_store.guestusernameguest
alfresco_user_store.storeuser://alfrescoUserStore
alfresco_user_store.system_container.childnamesys:system
alfresco_user_store.user_container.childnamesys:people
audit.alfresco-access.enabledfalse
audit.alfresco-access.sub-actions.enabledfalse
audit.cmischangelog.enabledfalse
audit.config.strictfalse
audit.dod5015.enabledfalse
audit.enabledtrue
audit.filter.alfresco-access.default.enabledfalse
audit.filter.alfresco-access.transaction.path~/sys:archivedItem;~/ver:;.*
audit.filter.alfresco-access.transaction.typecm:folder;cm:content;st:site
audit.filter.alfresco-access.transaction.user~System;~null;.*
audit.tagging.enabledtrue
authentication.chainalfrescoNtlm1:alfrescoNtlm
authentication.ticket.expiryModeAFTER_INACTIVITY
authentication.ticket.ticketsExpiretrue
authentication.ticket.useSingleTicketPerUsertrue
authentication.ticket.validDurationPT1H
authority.useBridgeTabletrue
bulkImport.batch.batchSize20
bulkImport.batch.numThreads4
cache.aclEntitySharedCache.backup-count1
cache.aclEntitySharedCache.cluster.typefully-distributed
cache.aclEntitySharedCache.eviction-percentage25
cache.aclEntitySharedCache.eviction-policyLRU
cache.aclEntitySharedCache.maxIdleSeconds0
cache.aclEntitySharedCache.maxItems50000
cache.aclEntitySharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.aclEntitySharedCache.timeToLiveSeconds0
cache.aclEntitySharedCache.tx.maxItems50000
cache.aclSharedCache.backup-count1
cache.aclSharedCache.cluster.typefully-distributed
cache.aclSharedCache.eviction-percentage25
cache.aclSharedCache.eviction-policyLRU
cache.aclSharedCache.maxIdleSeconds0
cache.aclSharedCache.maxItems50000
cache.aclSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.aclSharedCache.timeToLiveSeconds0
cache.aclSharedCache.tx.maxItems20000
cache.authenticationSharedCache.backup-count1
cache.authenticationSharedCache.cluster.typefully-distributed
cache.authenticationSharedCache.eviction-percentage25
cache.authenticationSharedCache.eviction-policyLRU
cache.authenticationSharedCache.maxIdleSeconds0
cache.authenticationSharedCache.maxItems5000
cache.authenticationSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.authenticationSharedCache.timeToLiveSeconds0
cache.authenticationSharedCache.tx.maxItems100
cache.authorityEntitySharedCache.tx.maxItems50000
cache.authoritySharedCache.backup-count1
cache.authoritySharedCache.cluster.typeinvalidating
cache.authoritySharedCache.eviction-percentage25
cache.authoritySharedCache.eviction-policyLRU
cache.authoritySharedCache.maxIdleSeconds0
cache.authoritySharedCache.maxItems10000
cache.authoritySharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.authoritySharedCache.timeToLiveSeconds0
cache.authoritySharedCache.tx.maxItems10000
cache.authorityToChildAuthoritySharedCache.backup-count1
cache.authorityToChildAuthoritySharedCache.cluster.typeinvalidating
cache.authorityToChildAuthoritySharedCache.eviction-percentage25
cache.authorityToChildAuthoritySharedCache.eviction-policyLRU
cache.authorityToChildAuthoritySharedCache.maxIdleSeconds0
cache.authorityToChildAuthoritySharedCache.maxItems40000
cache.authorityToChildAuthoritySharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.authorityToChildAuthoritySharedCache.timeToLiveSeconds0
cache.authorityToChildAuthoritySharedCache.tx.maxItems40000
cache.avmEntitySharedCache.backup-count1
cache.avmEntitySharedCache.cluster.typefully-distributed
cache.avmEntitySharedCache.eviction-percentage25
cache.avmEntitySharedCache.eviction-policyLRU
cache.avmEntitySharedCache.maxIdleSeconds0
cache.avmEntitySharedCache.maxItems5000
cache.avmEntitySharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.avmEntitySharedCache.timeToLiveSeconds0
cache.avmEntitySharedCache.tx.maxItems5000
cache.avmNodeAspectsSharedCache.backup-count1
cache.avmNodeAspectsSharedCache.cluster.typefully-distributed
cache.avmNodeAspectsSharedCache.eviction-percentage25
cache.avmNodeAspectsSharedCache.eviction-policyLRU
cache.avmNodeAspectsSharedCache.maxIdleSeconds0
cache.avmNodeAspectsSharedCache.maxItems5000
cache.avmNodeAspectsSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.avmNodeAspectsSharedCache.timeToLiveSeconds0
cache.avmNodeAspectsSharedCache.tx.maxItems5000
cache.avmNodeSharedCache.backup-count1
cache.avmNodeSharedCache.cluster.typefully-distributed
cache.avmNodeSharedCache.eviction-percentage25
cache.avmNodeSharedCache.eviction-policyLRU
cache.avmNodeSharedCache.maxIdleSeconds0
cache.avmNodeSharedCache.maxItems5000
cache.avmNodeSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.avmNodeSharedCache.timeToLiveSeconds0
cache.avmNodeSharedCache.tx.maxItems5000
cache.avmStoreSharedCache.tx.maxItems1000
cache.avmVersionRootEntityCache.tx.maxItems1100
cache.avmVersionRootEntitySharedCache.backup-count1
cache.avmVersionRootEntitySharedCache.cluster.typefully-distributed
cache.avmVersionRootEntitySharedCache.eviction-percentage25
cache.avmVersionRootEntitySharedCache.eviction-policyLRU
cache.avmVersionRootEntitySharedCache.maxIdleSeconds0
cache.avmVersionRootEntitySharedCache.maxItems1000
cache.avmVersionRootEntitySharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.avmVersionRootEntitySharedCache.timeToLiveSeconds0
cache.cachingContentStoreCache.backup-count1
cache.cachingContentStoreCache.cluster.typelocal
cache.cachingContentStoreCache.eviction-percentage25
cache.cachingContentStoreCache.eviction-policyLRU
cache.cachingContentStoreCache.maxIdleSeconds86400
cache.cachingContentStoreCache.maxItems5000
cache.cachingContentStoreCache.merge-policyhz.ADD_NEW_ENTRY
cache.cachingContentStoreCache.timeToLiveSeconds0
cache.caveatConfigCache.backup-count1
cache.caveatConfigCache.cluster.typeinvalidating
cache.caveatConfigCache.eviction-percentage25
cache.caveatConfigCache.eviction-policyLRU
cache.caveatConfigCache.maxIdleSeconds0
cache.caveatConfigCache.maxItems5000
cache.caveatConfigCache.merge-policyhz.ADD_NEW_ENTRY
cache.caveatConfigCache.timeToLiveSeconds0
cache.caveatConfigCache.tx.maxItems100
cache.compiledModelsSharedCache.backup-count1
cache.compiledModelsSharedCache.cluster.typeinvalidating
cache.compiledModelsSharedCache.eviction-percentage25
cache.compiledModelsSharedCache.eviction-policyLRU
cache.compiledModelsSharedCache.maxIdleSeconds0
cache.compiledModelsSharedCache.maxItems1000
cache.compiledModelsSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.compiledModelsSharedCache.timeToLiveSeconds0
cache.contentDataSharedCache.backup-count1
cache.contentDataSharedCache.cluster.typefully-distributed
cache.contentDataSharedCache.eviction-percentage25
cache.contentDataSharedCache.eviction-policyLRU
cache.contentDataSharedCache.maxIdleSeconds0
cache.contentDataSharedCache.maxItems130000
cache.contentDataSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.contentDataSharedCache.timeToLiveSeconds0
cache.contentDataSharedCache.tx.maxItems65000
cache.contentDiskDriver.fileInfoCache.backup-count1
cache.contentDiskDriver.fileInfoCache.cluster.typelocal
cache.contentDiskDriver.fileInfoCache.eviction-percentage25
cache.contentDiskDriver.fileInfoCache.eviction-policyLRU
cache.contentDiskDriver.fileInfoCache.maxIdleSeconds0
cache.contentDiskDriver.fileInfoCache.maxItems1000
cache.contentDiskDriver.fileInfoCache.merge-policyhz.ADD_NEW_ENTRY
cache.contentDiskDriver.fileInfoCache.timeToLiveSeconds0
cache.executingActionsCache.backup-count1
cache.executingActionsCache.cluster.typefully-distributed
cache.executingActionsCache.eviction-percentage25
cache.executingActionsCache.eviction-policyLRU
cache.executingActionsCache.maxIdleSeconds0
cache.executingActionsCache.maxItems1000
cache.executingActionsCache.merge-policyhz.ADD_NEW_ENTRY
cache.executingActionsCache.timeToLiveSeconds0
cache.globalConfigSharedCache.backup-count1
cache.globalConfigSharedCache.cluster.typeinvalidating
cache.globalConfigSharedCache.eviction-percentage25
cache.globalConfigSharedCache.eviction-policyLRU
cache.globalConfigSharedCache.maxIdleSeconds0
cache.globalConfigSharedCache.maxItems1000
cache.globalConfigSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.globalConfigSharedCache.timeToLiveSeconds0
cache.imapMessageSharedCache.backup-count1
cache.imapMessageSharedCache.cluster.typeinvalidating
cache.imapMessageSharedCache.eviction-percentage25
cache.imapMessageSharedCache.eviction-policyLRU
cache.imapMessageSharedCache.maxIdleSeconds0
cache.imapMessageSharedCache.maxItems2000
cache.imapMessageSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.imapMessageSharedCache.timeToLiveSeconds0
cache.imapMessageSharedCache.tx.maxItems1000
cache.immutableEntitySharedCache.backup-count1
cache.immutableEntitySharedCache.cluster.typeinvalidating
cache.immutableEntitySharedCache.eviction-percentage25
cache.immutableEntitySharedCache.eviction-policyLRU
cache.immutableEntitySharedCache.maxIdleSeconds0
cache.immutableEntitySharedCache.maxItems50000
cache.immutableEntitySharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.immutableEntitySharedCache.timeToLiveSeconds0
cache.immutableEntitySharedCache.tx.maxItems10000
cache.immutableSingletonSharedCache.backup-count1
cache.immutableSingletonSharedCache.cluster.typeinvalidating
cache.immutableSingletonSharedCache.eviction-percentage25
cache.immutableSingletonSharedCache.eviction-policyLRU
cache.immutableSingletonSharedCache.maxIdleSeconds0
cache.immutableSingletonSharedCache.maxItems12000
cache.immutableSingletonSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.immutableSingletonSharedCache.timeToLiveSeconds0
cache.immutableSingletonSharedCache.tx.maxItems12000
cache.loadedResourceBundlesSharedCache.backup-count1
cache.loadedResourceBundlesSharedCache.cluster.typefully-distributed
cache.loadedResourceBundlesSharedCache.eviction-percentage25
cache.loadedResourceBundlesSharedCache.eviction-policyLRU
cache.loadedResourceBundlesSharedCache.maxIdleSeconds0
cache.loadedResourceBundlesSharedCache.maxItems1000
cache.loadedResourceBundlesSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.loadedResourceBundlesSharedCache.timeToLiveSeconds0
cache.loadedResourceBundlesSharedCache.tx.maxItems1000
cache.messagesSharedCache.backup-count1
cache.messagesSharedCache.cluster.typefully-distributed
cache.messagesSharedCache.eviction-percentage25
cache.messagesSharedCache.eviction-policyLRU
cache.messagesSharedCache.maxIdleSeconds0
cache.messagesSharedCache.maxItems1000
cache.messagesSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.messagesSharedCache.timeToLiveSeconds0
cache.messagesSharedCache.tx.maxItems1000
cache.node.allRootNodesSharedCache.backup-count1
cache.node.allRootNodesSharedCache.cluster.typeinvalidating
cache.node.allRootNodesSharedCache.eviction-percentage25
cache.node.allRootNodesSharedCache.eviction-policyLRU
cache.node.allRootNodesSharedCache.maxIdleSeconds0
cache.node.allRootNodesSharedCache.maxItems1000
cache.node.allRootNodesSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.node.allRootNodesSharedCache.timeToLiveSeconds0
cache.node.allRootNodesSharedCache.tx.maxItems500
cache.node.aspectsSharedCache.backup-count1
cache.node.aspectsSharedCache.cluster.typelocal
cache.node.aspectsSharedCache.eviction-percentage25
cache.node.aspectsSharedCache.eviction-policyLRU
cache.node.aspectsSharedCache.maxIdleSeconds0
cache.node.aspectsSharedCache.maxItems130000
cache.node.aspectsSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.node.aspectsSharedCache.timeToLiveSeconds0
cache.node.aspectsSharedCache.tx.maxItems65000
cache.node.childByNameSharedCache.backup-count1
cache.node.childByNameSharedCache.cluster.typelocal
cache.node.childByNameSharedCache.eviction-percentage25
cache.node.childByNameSharedCache.eviction-policyLRU
cache.node.childByNameSharedCache.maxIdleSeconds0
cache.node.childByNameSharedCache.maxItems130000
cache.node.childByNameSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.node.childByNameSharedCache.timeToLiveSeconds0
cache.node.childByNameSharedCache.tx.maxItems65000
cache.node.nodesSharedCache.backup-count1
cache.node.nodesSharedCache.cluster.typeinvalidating
cache.node.nodesSharedCache.eviction-percentage25
cache.node.nodesSharedCache.eviction-policyLRU
cache.node.nodesSharedCache.maxIdleSeconds0
cache.node.nodesSharedCache.maxItems250000
cache.node.nodesSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.node.nodesSharedCache.timeToLiveSeconds0
cache.node.nodesSharedCache.tx.maxItems125000
cache.node.parentAssocsSharedCache.backup-count1
cache.node.parentAssocsSharedCache.cluster.typefully-distributed
cache.node.parentAssocsSharedCache.eviction-percentage25
cache.node.parentAssocsSharedCache.eviction-policyLRU
cache.node.parentAssocsSharedCache.maxIdleSeconds0
cache.node.parentAssocsSharedCache.maxItems130000
cache.node.parentAssocsSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.node.parentAssocsSharedCache.timeToLiveSeconds0
cache.node.propertiesSharedCache.backup-count1
cache.node.propertiesSharedCache.cluster.typelocal
cache.node.propertiesSharedCache.eviction-percentage25
cache.node.propertiesSharedCache.eviction-policyLRU
cache.node.propertiesSharedCache.maxIdleSeconds0
cache.node.propertiesSharedCache.maxItems130000
cache.node.propertiesSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.node.propertiesSharedCache.timeToLiveSeconds0
cache.node.propertiesSharedCache.tx.maxItems65000
cache.node.rootNodesSharedCache.backup-count1
cache.node.rootNodesSharedCache.cluster.typeinvalidating
cache.node.rootNodesSharedCache.eviction-percentage25
cache.node.rootNodesSharedCache.eviction-policyLRU
cache.node.rootNodesSharedCache.maxIdleSeconds0
cache.node.rootNodesSharedCache.maxItems1000
cache.node.rootNodesSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.node.rootNodesSharedCache.timeToLiveSeconds0
cache.node.rootNodesSharedCache.tx.maxItems1000
cache.nodeOwnerSharedCache.backup-count1
cache.nodeOwnerSharedCache.cluster.typefully-distributed
cache.nodeOwnerSharedCache.eviction-percentage25
cache.nodeOwnerSharedCache.eviction-policyLRU
cache.nodeOwnerSharedCache.maxIdleSeconds0
cache.nodeOwnerSharedCache.maxItems40000
cache.nodeOwnerSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.nodeOwnerSharedCache.timeToLiveSeconds0
cache.nodeOwnerSharedCache.tx.maxItems40000
cache.nodeRulesSharedCache.tx.maxItems2000
cache.permissionEntitySharedCache.tx.maxItems50000
cache.permissionsAccessSharedCache.backup-count1
cache.permissionsAccessSharedCache.cluster.typefully-distributed
cache.permissionsAccessSharedCache.eviction-percentage25
cache.permissionsAccessSharedCache.eviction-policyLRU
cache.permissionsAccessSharedCache.maxIdleSeconds0
cache.permissionsAccessSharedCache.maxItems50000
cache.permissionsAccessSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.permissionsAccessSharedCache.timeToLiveSeconds0
cache.permissionsAccessSharedCache.tx.maxItems10000
cache.personSharedCache.backup-count1
cache.personSharedCache.cluster.typefully-distributed
cache.personSharedCache.eviction-percentage25
cache.personSharedCache.eviction-policyLRU
cache.personSharedCache.maxIdleSeconds0
cache.personSharedCache.maxItems1000
cache.personSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.personSharedCache.timeToLiveSeconds0
cache.personSharedCache.tx.maxItems1000
cache.propertyUniqueContextSharedCache.backup-count1
cache.propertyUniqueContextSharedCache.cluster.typeinvalidating
cache.propertyUniqueContextSharedCache.eviction-percentage25
cache.propertyUniqueContextSharedCache.eviction-policyLRU
cache.propertyUniqueContextSharedCache.maxIdleSeconds0
cache.propertyUniqueContextSharedCache.maxItems10000
cache.propertyUniqueContextSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.propertyUniqueContextSharedCache.timeToLiveSeconds0
cache.propertyUniqueContextSharedCache.tx.maxItems10000
cache.propertyValueCache.backup-count1
cache.propertyValueCache.cluster.typeinvalidating
cache.propertyValueCache.eviction-percentage25
cache.propertyValueCache.eviction-policyLRU
cache.propertyValueCache.maxIdleSeconds0
cache.propertyValueCache.maxItems10000
cache.propertyValueCache.merge-policyhz.ADD_NEW_ENTRY
cache.propertyValueCache.timeToLiveSeconds0
cache.propertyValueCache.tx.maxItems1000
cache.publicapi.webScriptsRegistryCache.backup-count1
cache.publicapi.webScriptsRegistryCache.cluster.typeinvalidating
cache.publicapi.webScriptsRegistryCache.eviction-percentage25
cache.publicapi.webScriptsRegistryCache.eviction-policyLRU
cache.publicapi.webScriptsRegistryCache.maxIdleSeconds0
cache.publicapi.webScriptsRegistryCache.maxItems1000
cache.publicapi.webScriptsRegistryCache.merge-policyhz.ADD_NEW_ENTRY
cache.publicapi.webScriptsRegistryCache.timeToLiveSeconds0
cache.readersDeniedSharedCache.backup-count1
cache.readersDeniedSharedCache.cluster.typefully-distributed
cache.readersDeniedSharedCache.eviction-percentage25
cache.readersDeniedSharedCache.eviction-policyLRU
cache.readersDeniedSharedCache.maxIdleSeconds0
cache.readersDeniedSharedCache.maxItems10000
cache.readersDeniedSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.readersDeniedSharedCache.timeToLiveSeconds0
cache.readersDeniedSharedCache.tx.maxItems10000
cache.readersSharedCache.backup-count1
cache.readersSharedCache.cluster.typefully-distributed
cache.readersSharedCache.eviction-percentage25
cache.readersSharedCache.eviction-policyLRU
cache.readersSharedCache.maxIdleSeconds0
cache.readersSharedCache.maxItems10000
cache.readersSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.readersSharedCache.timeToLiveSeconds0
cache.readersSharedCache.tx.maxItems10000
cache.remoteAlfrescoTicketService.ticketsCache.backup-count1
cache.remoteAlfrescoTicketService.ticketsCache.cluster.typefully-distributed
cache.remoteAlfrescoTicketService.ticketsCache.eviction-percentage25
cache.remoteAlfrescoTicketService.ticketsCache.eviction-policyLRU
cache.remoteAlfrescoTicketService.ticketsCache.maxIdleSeconds0
cache.remoteAlfrescoTicketService.ticketsCache.maxItems1000
cache.remoteAlfrescoTicketService.ticketsCache.merge-policyhz.ADD_NEW_ENTRY
cache.remoteAlfrescoTicketService.ticketsCache.timeToLiveSeconds0
cache.resourceBundleBaseNamesSharedCache.backup-count1
cache.resourceBundleBaseNamesSharedCache.cluster.typefully-distributed
cache.resourceBundleBaseNamesSharedCache.eviction-percentage25
cache.resourceBundleBaseNamesSharedCache.eviction-policyLRU
cache.resourceBundleBaseNamesSharedCache.maxIdleSeconds0
cache.resourceBundleBaseNamesSharedCache.maxItems1000
cache.resourceBundleBaseNamesSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.resourceBundleBaseNamesSharedCache.timeToLiveSeconds0
cache.resourceBundleBaseNamesSharedCache.tx.maxItems1000
cache.routingContentStoreSharedCache.backup-count1
cache.routingContentStoreSharedCache.cluster.typelocal
cache.routingContentStoreSharedCache.eviction-percentage25
cache.routingContentStoreSharedCache.eviction-policyLRU
cache.routingContentStoreSharedCache.maxIdleSeconds0
cache.routingContentStoreSharedCache.maxItems10000
cache.routingContentStoreSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.routingContentStoreSharedCache.timeToLiveSeconds0
cache.routingContentStoreSharedCache.tx.maxItems10000
cache.samlTrustEngineSharedCache.backup-count1
cache.samlTrustEngineSharedCache.cluster.typefully-distributed
cache.samlTrustEngineSharedCache.eviction-percentage25
cache.samlTrustEngineSharedCache.eviction-policyLRU
cache.samlTrustEngineSharedCache.maxIdleSeconds0
cache.samlTrustEngineSharedCache.maxItems5000
cache.samlTrustEngineSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.samlTrustEngineSharedCache.timeToLiveSeconds0
cache.samlTrustEngineSharedCache.tx.maxItems5000
cache.siteNodeRefSharedCache.backup-count1
cache.siteNodeRefSharedCache.cluster.typefully-distributed
cache.siteNodeRefSharedCache.eviction-percentage25
cache.siteNodeRefSharedCache.eviction-policyLRU
cache.siteNodeRefSharedCache.maxIdleSeconds0
cache.siteNodeRefSharedCache.maxItems5000
cache.siteNodeRefSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.siteNodeRefSharedCache.timeToLiveSeconds0
cache.siteNodeRefSharedCache.tx.maxItems5000
cache.siteNodeRefSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.siteNodeRefSharedCache.timeToLiveSeconds0
cache.siteNodeRefSharedCache.tx.maxItems5000
cache.tagscopeSummarySharedCache.backup-count1
cache.tagscopeSummarySharedCache.cluster.typefully-distributed
cache.tagscopeSummarySharedCache.eviction-percentage25
cache.tagscopeSummarySharedCache.eviction-policyLRU
cache.tagscopeSummarySharedCache.maxIdleSeconds0
cache.tagscopeSummarySharedCache.maxItems1000
cache.tagscopeSummarySharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.tagscopeSummarySharedCache.timeToLiveSeconds0
cache.tagscopeSummarySharedCache.tx.maxItems1000
cache.tenantEntitySharedCache.backup-count1
cache.tenantEntitySharedCache.cluster.typefully-distributed
cache.tenantEntitySharedCache.eviction-percentage25
cache.tenantEntitySharedCache.eviction-policyLRU
cache.tenantEntitySharedCache.maxIdleSeconds0
cache.tenantEntitySharedCache.maxItems1000
cache.tenantEntitySharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.tenantEntitySharedCache.timeToLiveSeconds0
cache.tenantEntitySharedCache.tx.maxItems1000
cache.ticketsCache.backup-count1
cache.ticketsCache.cluster.typefully-distributed
cache.ticketsCache.eviction-percentage25
cache.ticketsCache.eviction-policyLRU
cache.ticketsCache.maxIdleSeconds0
cache.ticketsCache.maxItems1000
cache.ticketsCache.merge-policyhz.ADD_NEW_ENTRY
cache.ticketsCache.timeToLiveSeconds0
cache.userToAuthoritySharedCache.backup-count1
cache.userToAuthoritySharedCache.cluster.typeinvalidating
cache.userToAuthoritySharedCache.eviction-percentage25
cache.userToAuthoritySharedCache.eviction-policyLRU
cache.userToAuthoritySharedCache.maxIdleSeconds0
cache.userToAuthoritySharedCache.maxItems5000
cache.userToAuthoritySharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.userToAuthoritySharedCache.timeToLiveSeconds0
cache.userToAuthoritySharedCache.tx.maxItems100
cache.webScriptsRegistrySharedCache.backup-count1
cache.webScriptsRegistrySharedCache.cluster.typeinvalidating
cache.webScriptsRegistrySharedCache.eviction-percentage25
cache.webScriptsRegistrySharedCache.eviction-policyLRU
cache.webScriptsRegistrySharedCache.maxIdleSeconds0
cache.webScriptsRegistrySharedCache.maxItems1000
cache.webScriptsRegistrySharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.webScriptsRegistrySharedCache.timeToLiveSeconds0
cache.webServicesQuerySessionSharedCache.backup-count1
cache.webServicesQuerySessionSharedCache.cluster.typefully-distributed
cache.webServicesQuerySessionSharedCache.eviction-percentage25
cache.webServicesQuerySessionSharedCache.eviction-policyLRU
cache.webServicesQuerySessionSharedCache.maxIdleSeconds0
cache.webServicesQuerySessionSharedCache.maxItems1000
cache.webServicesQuerySessionSharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.webServicesQuerySessionSharedCache.timeToLiveSeconds0
cache.webServicesQuerySessionSharedCache.tx.maxItems50
cache.zoneToAuthoritySharedCache.backup-count1
cache.zoneToAuthoritySharedCache.cluster.typeinvalidating
cache.zoneToAuthoritySharedCache.eviction-percentage25
cache.zoneToAuthoritySharedCache.eviction-policyLRU
cache.zoneToAuthoritySharedCache.maxIdleSeconds0
cache.zoneToAuthoritySharedCache.maxItems500
cache.zoneToAuthoritySharedCache.merge-policyhz.ADD_NEW_ENTRY
cache.zoneToAuthoritySharedCache.timeToLiveSeconds0
cache.zoneToAuthoritySharedCache.tx.maxItems500
content.metadataExtracter.default.timeoutMs20000
create.missing.people${server.transaction.allow-writes}
db.driverorg.postgresql.Driver
db.namealfresco
db.passwordadmin
db.pool.abandoned.detectfalse
db.pool.abandoned.logfalse
db.pool.abandoned.time300
db.pool.evict.idle.min1800000
db.pool.evict.interval600000
db.pool.evict.num.tests-1
db.pool.evict.validatefalse
db.pool.idle10
db.pool.initial10
db.pool.max100
db.pool.min10
db.pool.statements.enabletrue
db.pool.statements.max40
db.pool.validate.borrowtrue
db.pool.validate.queryblank
db.pool.validate.returnfalse
db.pool.wait.max-1
db.schema.nameblank
db.schema.stopAfterSchemaBootstrapfalse
db.schema.updatetrue
db.schema.update.lockRetryCount24
db.schema.update.lockRetryWaitSeconds5
db.txn.isolation-1
db.urljdbc:postgresql://localhost:5432/${db.name}
db.usernamealfresco
default.async.action.corePoolSize8
default.async.action.maximumPoolSize20
default.async.action.threadPriority1
deployment.avm.nameavm
deployment.avm.rootPath/www/avm_webapps
deployment.avm.storeNamePattern%storeName%-live
deployment.dmr.consolidatetrue
deployment.dmr.namealfresco
deployment.filesystem.autofixtrue
deployment.filesystem.datadir${deployment.filesystem.rootdir}/depdata
deployment.filesystem.default.metadatadir${deployment.filesystem.metadatadir}/default
deployment.filesystem.default.namefilesystem
deployment.filesystem.default.rootdir./www
deployment.filesystem.errorOnOverwritefalse
deployment.filesystem.logdir${deployment.filesystem.rootdir}/deplog
deployment.filesystem.metadatadir${deployment.filesystem.rootdir}/depmetadata
deployment.filesystem.rootdir./wcm
deployment.service.corePoolSize2
deployment.service.maximumPoolSize3
deployment.service.numberOfSendingThreads5
deployment.service.targetLockRefreshTime60000
deployment.service.targetLockTimeout3600000
deployment.service.threadPriority5
dir.cachedcontent${dir.root}/cachedcontent
dir.contentstore${dir.root}/contentstore
dir.contentstore.deleted${dir.root}/contentstore.deleted
dir.contentstore.tenantsblank
dir.indexes${dir.root}/lucene-indexes
dir.indexes.backup${dir.root}/backup-lucene-indexes
dir.indexes.lock${dir.indexes}/locks
dir.keystore${dir.root}/keystore
dir.license.externalC:/Alfresco
dir.rootC:/Alfresco/alf_data
domain.name.caseSensitivefalse
domain.separatorblank
download.cleaner.maxAgeMins60
download.cleaner.repeatIntervalMins60
download.cleaner.startDelayMins60
download.maxContentSize2152852358
encryption.bootstrap.reencryptfalse
encryption.cipherAlgorithmDESede/CBC/PKCS5Padding
encryption.keyAlgorithmDESede
encryption.keySpec.classorg.alfresco.encryption.DESEDEKeyGenerator
encryption.keystore.backup.keyMetaData.location${dir.keystore}/backup-keystore-passwords.properties
encryption.keystore.backup.location${dir.keystore}/backup-keystore
encryption.keystore.backup.providerblank
encryption.keystore.backup.typeJCEKS
encryption.keystore.keyMetaData.location${dir.keystore}/keystore-passwords.properties
encryption.keystore.location${dir.keystore}/keystore
encryption.keystore.providerblank
encryption.keystore.typeJCEKS
encryption.mac.algorithmHmacSHA1
encryption.mac.messageTimeout30000
encryption.reencryptor.chunkSize100
encryption.reencryptor.numThreads2
encryption.ssl.keystore.keyMetaData.location${dir.keystore}/ssl-keystore-passwords.properties
encryption.ssl.keystore.location${dir.keystore}/ssl.keystore
encryption.ssl.keystore.providerblank
encryption.ssl.keystore.typeJCEKS
encryption.ssl.truststore.keyMetaData.location${dir.keystore}/ssl-truststore-passwords.properties
encryption.ssl.truststore.location${dir.keystore}/ssl.truststore
encryption.ssl.truststore.providerblank
encryption.ssl.truststore.typeJCEKS
fileFolderService.checkHidden.enabledtrue
ftp.enabledfalse
ftp.port21
fts.indexer.batchSize1000
hibernate.jdbc.use_get_generated_keysfalse
home.folder.creation.disabledfalse
home.folder.creation.eagertrue
home_folder_provider_synchronizer.enabledfalse
home_folder_provider_synchronizer.keep_empty_parentsfalse
home_folder_provider_synchronizer.override_providerblank
hybridworkflow.enabledfalse
imap.attachments.folder.folderPath${spaces.imap_attachments.childname}
imap.attachments.folder.rootPath/${spaces.company_home.childname}
imap.attachments.folder.store${spaces.store}
imap.attachments.modeSEPARATE
imap.config.home.folderPath${spaces.imap_home.childname}
imap.config.home.rootPath/${spaces.company_home.childname}
imap.config.home.store${spaces.store}
imap.config.server.mountPointsAlfrescoIMAP
imap.config.server.mountPoints.default.modeNameARCHIVE
imap.config.server.mountPoints.default.mountPointNameIMAP
imap.config.server.mountPoints.default.rootPath${protocols.rootPath}
imap.config.server.mountPoints.default.store${spaces.store}
imap.config.server.mountPoints.value.AlfrescoIMAP.modeNameMIXED
imap.config.server.mountPoints.value.AlfrescoIMAP.mountPointNameAlfresco IMAP
imap.server.attachments.extraction.enabledtrue
imap.server.enabledfalse
imap.server.port143
index.backup.cronExpression0 0 3 * * ?
index.recovery.maximumPoolSize5
index.recovery.modeVALIDATE
index.recovery.stopOnErrorfalse
index.reindexMissingContent.cronExpression* * * * * ? 2099
index.subsystem.namesolr
index.tracking.adm.cronExpression${index.tracking.cronExpression}
index.tracking.avm.cronExpression${index.tracking.cronExpression}
index.tracking.cronExpression0/5 * * * * ?
index.tracking.disableInTransactionIndexingfalse
index.tracking.maxRecordSetSize1000
index.tracking.maxTxnDurationMinutes10
index.tracking.minRecordPurgeAgeDays30
index.tracking.purgeSize7200000
index.tracking.reindexLagMs1000
location.license.embedded/WEB-INF/alfresco/license/*.lic
location.license.externalfile://${dir.license.external}/*.lic
location.license.sharedclasspath*:/alfresco/extension/license/*.lic
mail.service.corePoolSize8
mail.service.maximumPoolSize20
mbean.server.locateExistingServerIfPossibletrue
monitor.rmi.service.enabledtrue
monitor.rmi.service.port50508
mybatis.useLocalCachesfalse
nodes.bulkLoad.cachingThreshold10
notification.email.siteinvitefalse
opencmis.activities.enabledtrue
opencmis.connector.default.objectsDefaultDepth100
opencmis.connector.default.objectsDefaultMaxItems10000
opencmis.connector.default.openHttpSessionfalse
opencmis.connector.default.rootPath/${spaces.company_home.childname}
opencmis.connector.default.store${spaces.store}
opencmis.connector.default.typesDefaultDepth-1
opencmis.connector.default.typesDefaultMaxItems500
opencmis.context.overridefalse
opencmis.context.valuefalse
opencmis.server.overridefalse
opencmis.server.valueblank
opencmis.servletpath.overridefalse
opencmis.servletpath.valueblank
orphanReaper.lockRefreshTime60000
orphanReaper.lockTimeOut3600000
people.search.honor.hint.useCQtrue
policy.content.update.ignoreEmptytrue
protocols.rootPath/${spaces.company_home.childname}
protocols.storeName${spaces.store}
publishing.root${publishing.root.path}/${spaces.publishing.root.childname}
publishing.root.path/app:company_home/app:dictionary
replication.enabledfalse
repo.remote.endpoint/service
repository.nameMain Repository
sample.site.disabledfalse
security.anyDenyDeniestrue
server.maxusers-1
server.setup.transaction.max-retries40
server.setup.transaction.max-retry-wait-ms15000
server.setup.transaction.min-retry-wait-ms15000
server.setup.transaction.wait-increment-ms10
server.transaction.allow-writestrue
server.transaction.max-retries40
server.transaction.max-retry-wait-ms2000
server.transaction.min-retry-wait-ms100
server.transaction.mode.defaultPROPAGATION_REQUIRED
server.transaction.mode.readOnlyPROPAGATION_REQUIRED, readOnly
server.transaction.wait-increment-ms100
server.web.transaction.max-duration-ms0
share.contextshare
share.host127.0.0.1
share.port8080
share.protocolhttp
shutdown.backstop.enabledfalse
shutdown.backstop.timeout10000
solr.cmis.alternativeDictionaryDEFAULT_DICTIONARY
solr.hostlocalhost
solr.max.host.connections40
solr.max.total.connections40
solr.port8080
solr.port.ssl8443
solr.secureCommshttps
solr.solrConnectTimeout5000
solr.solrPasswordsolr
solr.solrPingCronExpression0 0/5 * * * ? *
solr.solrUsersolr
solr.store.mappingssolrMappingAlfresco, solrMappingArchive
solr.store.mappings.value.solrMappingAlfresco.baseUrl/solr/alfresco
solr.store.mappings.value.solrMappingAlfresco.httpClientFactorysolrHttpClientFactory
solr.store.mappings.value.solrMappingAlfresco.identifierSpacesStore
solr.store.mappings.value.solrMappingAlfresco.protocolworkspace
solr.store.mappings.value.solrMappingArchive.baseUrl/solr/archive
solr.store.mappings.value.solrMappingArchive.httpClientFactorysolrHttpClientFactory
solr.store.mappings.value.solrMappingArchive.identifierSpacesStore
solr.store.mappings.value.solrMappingArchive.protocolarchive
spaces.archive.storearchive://SpacesStore
spaces.company_home.childnameapp:company_home
spaces.content_forms.childnameapp:forms
spaces.dictionary.childnameapp:dictionary
spaces.emailActions.childnameapp:email_actions
spaces.extension_webscripts.childnamecm:extensionwebscripts
spaces.guest_home.childnameapp:guest_home
spaces.imapConfig.childnameapp:imap_configs
spaces.imap_attachments.childnamecm:Imap Attachments
spaces.imap_home.childnamecm:Imap Home
spaces.imap_templates.childnameapp:imap_templates
spaces.inbound_transfer_records.childnameapp:inbound_transfer_records
spaces.models.childnameapp:models
spaces.nodetemplates.childnameapp:node_templates
spaces.publishing.root.childnameapp:publishing_root
spaces.rendition.rendering_actions.childnameapp:rendering_actions
spaces.replication.replication_actions.childnameapp:replication_actions
spaces.savedsearches.childnameapp:saved_searches
spaces.scheduled_actions.childnamecm:Scheduled Actions
spaces.scripts.childnameapp:scripts
spaces.searchAction.childnamecm:search
spaces.shared.childnameapp:shared
spaces.sites.childnamest:sites
spaces.storeworkspace://SpacesStore
spaces.templates.childnameapp:space_templates
spaces.templates.content.childnameapp:content_templates
spaces.templates.email.activities.childnamecm:activities
spaces.templates.email.childnameapp:email_templates
spaces.templates.email.following.childnameapp:following
spaces.templates.email.invite.childnamecm:invite
spaces.templates.email.invite1.childnameapp:invite_email_templates
spaces.templates.email.notify.childnameapp:notify_email_templates
spaces.templates.email.workflowemailnotification.childnamecm:workflownotification
spaces.templates.rss.childnameapp:rss_templates
spaces.transfer_groups.childnameapp:transfer_groups
spaces.transfer_temp.childnameapp:temp
spaces.transfers.childnameapp:transfers
spaces.user_homes.childnameapp:user_homes
spaces.user_homes.regex.group_orderblank
spaces.user_homes.regex.keyuserName
spaces.user_homes.regex.patternblank
spaces.wcm.childnameapp:wcm
spaces.wcm_content_forms.childnameapp:wcm_forms
spaces.wcm_deployed.childnamecm:wcm_deployed
spaces.webscripts.childnamecm:webscripts
spaces.workflow.definitions.childnameapp:workflow_defs
subsystems.test.beanPropinst1,inst2,inst3
subsystems.test.beanProp.default.anotherStringPropertyGlobal Default
subsystems.test.beanProp.default.longProperty123456789123456789
subsystems.test.beanProp.value.inst2.boolPropertytrue
subsystems.test.beanProp.value.inst3.anotherStringPropertyGlobal Instance Default
subsystems.test.simpleProp2true
subsystems.test.simpleProp3Global Default3
sync.checkLicenseForSyncModetrue
sync.modeON_PREMISE
sync.pullJob.enabledtrue
sync.pushJob.enabledtrue
system.acl.maxPermissionCheckTimeMillis10000
system.acl.maxPermissionChecks1000
system.authorities_container.childnamesys:authorities
system.bootstrap.config_check.stricttrue
system.cache.disableImmutableSharedCachesfalse
system.cache.disableMutableSharedCachesfalse
system.cache.parentAssocs.limitFactor8
system.cache.parentAssocs.maxSize130000
system.certificate_container.childnamesys:samlcertificate
system.content.caching.cacheOnInboundtrue
system.content.caching.contentCleanup.cronExpression0 0 3 * * ?
system.content.caching.maxDeleteWatchCount1
system.content.caching.maxFileSizeMB0
system.content.caching.maxUsageMB4096
system.content.caching.minFileAgeMillis60000
system.content.contentUrlConverter.batchSize500
system.content.contentUrlConverter.cronExpression* * * * * ? 2099
system.content.contentUrlConverter.runAsScheduledJobfalse
system.content.contentUrlConverter.threadCount2
system.content.deletionFailureActionIGNORE
system.content.eagerOrphanCleanupfalse
system.content.maximumFileSizeLimitblank
system.content.orphanCleanup.cronExpression0 0 4 * * ?
system.content.orphanProtectDays14
system.descriptor.childnamesys:descriptor
system.descriptor.current.childnamesys:descriptor-current
system.downloads_container.childnamesys:downloads
system.enableTimestampPropagationtrue
system.filefolderservice.defaultListMaxResults5000
system.hibernateMaxExecutions20000
system.integrity.enabledtrue
system.integrity.failOnViolationtrue
system.integrity.maxErrorsPerTransaction5
system.integrity.tracefalse
system.maximumStringLength-1
system.metadata-query-indexes.ignoredtrue
system.patch.sharedFolder.cronExpression0 0 0 ? 1 1 2030
system.patch.sharedFolder.deferredfalse
system.people_container.childnamesys:people
system.quickshare.enabledtrue
system.readpermissions.bulkfetchsize1000
system.readpermissions.optimisetrue
system.remote_credentials_container.childnamesys:remote_credentials
system.storesystem://system
system.syncset_definition_container.childnamesys:syncset_definitions
system.system_container.childnamesys:system
system.thumbnail.definition.default.maxPages-1
system.thumbnail.definition.default.maxSourceSizeKBytes-1
system.thumbnail.definition.default.pageLimit1
system.thumbnail.definition.default.readLimitKBytes-1
system.thumbnail.definition.default.readLimitTimeMs-1
system.thumbnail.definition.default.timeoutMs-1
system.thumbnail.generatetrue
system.thumbnail.mimetype.maxSourceSizeKBytes.docx-1
system.thumbnail.mimetype.maxSourceSizeKBytes.odp-1
system.thumbnail.mimetype.maxSourceSizeKBytes.ods-1
system.thumbnail.mimetype.maxSourceSizeKBytes.odt-1
system.thumbnail.mimetype.maxSourceSizeKBytes.pdf-1
system.thumbnail.mimetype.maxSourceSizeKBytes.pptx-1
system.thumbnail.mimetype.maxSourceSizeKBytes.txt-1
system.thumbnail.mimetype.maxSourceSizeKBytes.xlsx-1
system.thumbnail.quietPeriod604800
system.thumbnail.quietPeriodRetriesEnabledtrue
system.thumbnail.redeployStaticDefsOnStartuptrue
system.thumbnail.retryCount2
system.thumbnail.retryPeriod60
system.usages.clearBatchSize0
system.usages.enabledfalse
system.usages.updateBatchSize50
system.webdav.activities.enabledfalse
system.webdav.renameShufflePattern(.*/\..*)|(.*[a-f0-9]{8}+$)|(.*\.tmp$)|(.*\.wbk$)|(.*\.bak$)|(.*\~$)|(.*backup.*\.do[ct]{1}[x]?[m]?$)
system.webdav.rootPath${protocols.rootPath}
system.webdav.servlet.enabledtrue
system.webdav.storeName${protocols.storeName}
system.webdav.url.path.prefixblank
system.workflow.deployWorkflowsInTenanttrue
system.workflow.deployservlet.enabledfalse
system.workflow.engine.activiti.definitions.visibletrue
system.workflow.engine.activiti.idblocksize100
system.workflow.engine.activiti.taskvariableslimit20000
system.workflow.maxAuthoritiesForPooledTasks500
system.workflow.maxGroupReviewers0
system.workflow.maxPooledTasks-1
system.workflow_container.childnamesys:workflow
system.zones_container.childnamesys:zones
ticket.cleanup.cronExpression0 0 * * * ?
transferservice.receiver.enabledfalse
transferservice.receiver.lockRefreshTime60000
transferservice.receiver.lockRetryCount3
transferservice.receiver.lockRetryWait100
transferservice.receiver.lockTimeOut300000
transferservice.receiver.stagingDir${java.io.tmpdir}/alfresco-transfer-staging
transformer.Archive.includeContentsfalse
trashcan.MaxSize1000
urlshortening.bitly.api.keyR_ca15c6c89e9b25ccd170bafd209a0d4f
urlshortening.bitly.url.length20
urlshortening.bitly.usernamebrianalfresco
user.name.caseSensitivefalse
version.store.deprecated.lightWeightVersionStoreworkspace://lightWeightVersionStore
version.store.enableAutoVersioningtrue
version.store.migrateCleanupJob.batchSize1
version.store.migrateCleanupJob.threadCount3
version.store.migrateVersionStore.batchSize1
version.store.migrateVersionStore.cronExpression* * * * * ? 2099
version.store.migrateVersionStore.limitPerJobCycle-1
version.store.migrateVersionStore.runAsScheduledJobfalse
version.store.migrateVersionStore.threadCount3
version.store.onlyUseDeprecatedV1false
version.store.version2Storeworkspace://version2Store
version.store.versionComparatorClassblank
wcm.rename.max.time.milliseconds2000
webscripts.encryptTempFilesfalse
webscripts.memoryThreshold4194304
webscripts.setMaxContentSize4294967296
webscripts.tempDirectoryNameWebScripts
xforms.formatCaptiontrue

Note: From Content Services 5.1 onwards, thesystem.workflow.engine.activiti.enabled property is no longer available.

Alfresco:Name=License

Object Type =org.alfresco.enterprise.repo.management.LicenseDescriptor

Exposes the parameters of the Content Services license.

See the Repo Admin ConsoleGeneral > License for information about these attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-license

Alfresco:Name=Log4jHierarchy

Object Type =org.apache.log4j.jmx.HierarchyDynamicMBean*

Log4jHierarchy is an instance of theHierarchyDynamicMBean class provided with log4j that allows adjustments to be made to the level of detail included in the server logs.

All read only attributes are prefixed withlogger=org.alfresco. and the default value is the same as the attribute name, for example,logger=org.alfresco.cmis is the name and default value of the CMIS logger.

The editablethreshold attribute is discussed inJMX editable management beans.

Alfresco:Name=MetadataQueryIndexesCheck

Object Type =org.alfresco.enterprise.repo.management.PatchCheck

Exposes the metadata query index patch number and whether the patch has been applied:

Attribute nameExample value
Appliedtrue
PatchIdpatch.db-V4.2-metadata-query-indexes

Alfresco:Name=ModuleService

Object Type =org.alfresco.enterprise.repo.management.ModuleService

Allows monitoring of installed modules, listing modules that have been applied, and any missing modules:

Attribute name =AllModulesExample format: A composite table containing the details of all modules currently installed

[ [ Attribute Name           Attribute Value   ----------------------------------------------------    module.description      Alfresco Docs Integration    module.id               org.alfresco.integrations.google.docs    module.installDate      2014-06-20T09:43:17.773+01:00    module.installState     INSTALLED    module.repo.version.max 999    module.repo.version.min 4.2.0    module.title            Alfresco Google Docs Integration    module.version          2.0.6 ] ]

Attribute name =MissingModulesExample value =[]

Alfresco:Name=PatchService

Object Type =org.alfresco.enterprise.repo.management.PatchService

Allows monitoring of installed patches.

Attribute name =AppliedPatchesExample format: A composite table containing the details of all patches currently installed

[ [ Attribute Name  Attribute Value   ----------------------------------------------------   appliedOnDate   Fri Jun 20 09:47:59 BST 2014   appliedToSchema 6052   appliedToServer 4.2.1 (r63452-b50) - Enterprise   description     Migrate old Tenant attributes   fixesFromSchema 0   fixesToSchema   0   id              patch.migrateAttrTenants   report          Not relevant to schema 6,052   succeeded       true   targetSchema    1   wasExecuted     false ] ]

Alfresco:Name=RepoServerMgmt

Object Type =org.alfresco.repo.admin.RepoServerMgmt

Exposes information about the repository server, including the maximum number of users, user and ticket counts:

Attribute nameExample value
MaxUsers-1
ReadOnlyfalse
TicketCountAll2
TicketCountNonExpired2
UserCountAll2
UserCountNonExpired2

Alfresco:Name=RepositoryDescriptor

Object Type =org.alfresco.enterprise.repo.management.RepositoryDescriptor, Type=*

Exposes metadata about the Alfresco repository.

There are three types:

  • Alfresco:Name=RepositoryDescriptor,Type=Current: exposes information about the current repository installation.
  • Alfresco:Name=RepositoryDescriptor,Type=Initially Installed: exposes information about the initial repository installation, before any patches or upgrades were installed.
  • Alfresco:Name=RepositoryDescriptor,Type=Server: exposes information about the current server version, as contained in the Content Services war file. This instance should be used to determine the properties of the server.

See the Repo Admin ConsoleGeneral > Repository Information for information about these attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-repositoryinfo.

Alfresco:Name=RunningActions

Object Type =org.alfresco.enterprise.repo.management.ActionsImpl

Exposes information about any actions that are in progress, including the number and action statistics:

Attribute nameExample value
ActionStatistics[]
RunningActionCount0
RunningActions[]

Alfresco:Name=Runtime

Object Type =org.alfresco.enterprise.repo.management.Runtime

Exposes basic properties about the memory available to the JVM, including the amount of free memory and the maximum and total amount of memory in bytes.

Note: A Oracle JVM exposes much more detailed information through its platform MX Beans.

Attribute nameExample value
AvailableProcessors8
AvailableProcessorsFreeMemory391222616
MaxMemory778502144
TotalMemory778502144

Alfresco:Name=Schedule

Object Type =org.alfresco.enterprise.scheduler.MonitoredRAMJobStore$MonitoredCronTrigger, Group=*, Type=*, Trigger=*

Allows monitoring of the individual triggers, i.e. scheduled jobs, running in the Quartz scheduler. The attributes have various default settings but share the following meanings:

PropertyDescription
GroupThe name of the schedule group that owns the trigger. Typically DEFAULT.
TypeThe type of trigger, typicallyMonitoredCronTrigger orMonitoredSimpleTrigger. Triggers of different types have different properties.
TriggerThe name of the trigger itself. Must be unique within the group.

All instances have the following properties:

PropertyDescription
CalendarNameThe name of the scheduling Calendar associated with the trigger, or null if there is not one.
DescriptionAn optional textual description of the trigger.
EndTimeThe time after which the trigger will stop repeating, if set.
FinalFireTimeThe time at which the last execution of the trigger is scheduled, if applicable.
GroupThe name of the schedule group that owns the trigger.
JobGroupThe name of the schedule group that owns the job executed by the trigger.
JobNameThe name of the job executed by the trigger.
MayFireAgainA Boolean that when true indicates that it is possible for the trigger to fire again.
NameThe name of the trigger.
NextFireTimeThe next time at which the trigger will fire.
PreviousFireTimeThe previous time at which the trigger fired.
PriorityA numeric priority that decides which trigger is executed before another in the event of a ‘tie’ in their scheduled times.
StartTimeThe time at which the trigger should start.
StateThe current state of the trigger.
VolatileA Boolean that when true indicates that the trigger won’t be remembered when the JVM is restarted.

WhenType=MonitoredCronTrigger, the following additional properties are available:

PropertyDescription
CronExpressionA unix-like expression, using the same syntax as the cron command, that expresses when the job should be scheduled.
TimeZoneThe name of the time zone to be used to interpret times.

IfType=MonitoredSimpleTrigger, the following additional properties are available:

PropertyDescription
RepeatCountThe number of times the job should repeat, after which it’ll be removed from the schedule. A value of-1 means repeat indefinitely.
RepeatIntervalThe time interval in milliseconds between job executions.
TimesTriggeredThe number of times the job has been run.

To run the database cleanup activities, schedule thepropTablesCleanupTrigger attribute. For more information, seeScheduling cleanup of database tables.

Alfresco:Name=SolrIndexes

Object Type =org.alfresco.enterprise.repo.management.SOLRIndex

Allows monitoring of each searchable index. There are two types:

  • Alfresco:Name=SolrIndexes,Core=alfresco: exposes information about the current index directory.
  • Alfresco:Name=SolrIndexes,Core=archive: exposes information about the archive index directory.
Attribute nameExample value
Currenttrue
DataDirectoryC:\Alfresco\alf_data\solr\archive\SpacesStore\
HasDeletionsfalse
IndexInstanceDirectoryorg.apache.lucene.store.SimpleFSDirectory: org.apache.lucene.store.SimpleFSDirectory@ C:\Alfresco\alf_data\solr\archive\SpacesStore\index
InstanceDirectoryC:\Alfresco\alf_data\solr\archive-SpacesStore\
LastModifiedFormat:Thu Sep 24 14:32:30 BST 2015
MaxDocument940
NumDocuments940
Optimizedtrue
StartTimeFormat:Mon Oct 12 10:36:20 BST 2015
Uptime364362
Version1403253989735

Alfresco:Name=SystemProperties

Object Type =org.alfresco.enterprise.repo.management.PropertiesDynamicMBean

Exposes all the system properties of the JVM. The set of standard system properties is documented on the Apache website.

See the Repo Admin ConsoleSystem Summary for information about these attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-systemsummary.

Alfresco:Name=WorkflowInformation

Object Type =org.alfresco.enterprise.repo.management.Workflow

Exposes information about the workflow management interface for Activiti definitions and tasks. Only the read-only attributes forAlfresco:Name=WorkflowInformation are shown in this table. For information about the editable attributes, seeJMX editable management beans.

Attribute nameExample value
ActivitiEngineEnabledtrue
ActivitiWorkflowDefinitionsVisibletrue
NumberOfActivitiTaskInstances0
NumberOfActivitiWorkflowDefinitionsDeployed9
NumberOfActivitiWorkflowInstances0

Important: TheActivitiEngineEnabled property is enabled by default. It is recommended that you do not change (or disable) this property via the JMX client.

JMX editable MBeans

JMX values (Managed Bean or MBean attributes) are exposed in the Repo Admin Console and with internal tools (Alfresco JMX Dump) or external tools like JConsole. The editable management beans are described here with their default values where attributes are not already explained in the Admin Console.

The default values given are the defaults for an installer-installed instance of Content Services on Windows. These values can differ if you’re using a different install method or operating system.

WARNING: Be aware that any changes you make to attributes in the live system are written to the database. The next time that Content Services starts, these values will take precedence over any values specified in properties files, for example,alfresco-global.properties.

Alfresco:Type=Configuration, Category=ActivitiesFeed

Object Type =ActivitiesFeed$default

This MBean provides information about the Activities Feed configuration, including whether the feed is enabled and how often users will receive Activities Feed emails.

See the Repo Admin ConsoleRepository Services - Activities Feed for information about these editable attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-activitiesfeed.

Alfresco:Type=Configuration, Category=Audit

Object Type =Audit$default

This MBean provides information about the audit configuration, namely which audit capabilities are enabled.

Attribute nameExample value
audit.alfresco-access.enabledfalse
audit.cmischangelog.enabledfalse
audit.enabledtrue
audit.sync.enabledtrue
audit.tagging.enabledtrue

Alfresco:Type=Configuration, Category=Authentication

Object Type =Authentication$managed$alfrescoNtlm1

This MBean provides information about the authentication configuration.

See the Admin Console Directories - Directory Management for information about these editable attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-directorymanagement.

Alfresco:Type=Configuration, Category=ContentStore

Object Type =ContentStore$managed$encrypted orContentStore$managed$unencrypted

This MBean provides information about the type ofContentStore used and its configuration. For more information, seeSet up encryption properties using JMX client andEncrypted Content Store properties.

Alfresco:Type=Configuration, Category=Events

Object Type =Events$default

This MBean provides information about the type of events that are used for monitoring.

Attribute nameValues
alfresco.events.includeCONTENTPUT, NODEADDED, NODEREMOVED, NODEMOVED, NODERENAMED, NODECHECKOUTCANCELLED, NODECHECKEDOUT, NODECHECKEDIN

Alfresco:Type=Configuration, Category=Replication

Object Type =Replication$default

This MBean provides information about the replication settings between repositories, and the replication configuration.

See the Repo Admin ConsoleRepository Services - Replication Service for information about these editable attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-replicationservice.

Alfresco:Type=Configuration, Category=Search

Object Types=Search$*

This MBean provides information about the search service in use (Solr, Solr 4 or no index) and the configuration for that search.

See the Repo Admin ConsoleRepository Services - Search Service for information about these editable attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-searchservice.

Alfresco:Type=Configuration, Category=Subscriptions

Object Type =Subscriptions$default

This MBean provides information about settings for subscriptions, including whether subscriptions are enabled and any template paths.

See the Repo Admin ConsoleRepository Services - Subscription Service for information about these editable attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-subscriptionservice.

Alfresco:Type=Configuration, Category=Synchronization

Object Type =Synchronization$default

This MBean provides information about the synchronization settings in, including when to synchronize and logging intervals.

Attribute nameExample value
synchronization.allowDeletionstrue
synchronization.autoCreatePeopleOnLogintrue
synchronization.import.cron0 0 0 * * ?
synchronization.loggingInterval100
synchronization.syncOnStartuptrue
synchronization.syncWhenMissingPeopleLogIntrue
synchronization.synchronizeChangesOnlytrue
synchronization.workerThreads1

Alfresco:Type=Configuration, Category=Transformers

Object Type =Transformers$default

This MBean provides information about the transformation service setting for converting between different file formats.

See the Repo Admin ConsoleRepository Services - Transformation Services for information about these editable attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-transformations.

Alfresco:Type=Configuration, Category=WebDav

Object Type =org.alfresco.enterprise.repo.management.WebDav

This MBean provides information about whether WebDav is enabled or disabled.

Attribute nameExample value
Enabledtrue

Alfresco:Type=Configuration, Category=email

Object Types=email$inbound, email$outbound

This MBean provides information about the inbound and outbound email configuration, including server, protocol and encoding information.

See the Repo Admin ConsoleEmail Services - Inbound Email and Email Services - Outbound Email for information about these editable attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-inboundemail andhttp://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-outboundemail.

Alfresco:Type=Configuration, Category=fileServers

Object Type =fileServers$default

This MBean provides information about the FTP server configured.

See the Repo Admin ConsoleVirtual File Systems - File Servers for information about these editable attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-fileservers.

Alfresco:Type=Configuration, Category=googledocs

Object Type =googledocs$v2

This MBean provides information about the Google Docs configuration.

Attribute nameExample value
googledocs.enabledtrue
googledocs.idleThresholdSeconds600
googledocs.version2.0.6-12ent

Alfresco:Type=Configuration, Category=imap

Object Types=imap$default, imap$default$imap.config.server.mountPoints$AlfrescoIMAP

This MBean provides information about the IMAP mail and server configuration.

See the Repo Admin ConsoleVirtual File Systems - IMAP Service for information about these editable attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-imap.

Alfresco:Type=Configuration, Category=sysAdmin

Object Type =sysAdmin$default

This MBean provides information about the administration settings for the Alfresco Share.

Attribute nameExample value
alfresco.contextalfresco
alfresco.host127.0.0.1
alfresco.port8080
alfresco.protocolhttp
server.allowWritetrue
server.allowedusers 
server.maxusers-1
share.contextshare
share.host127.0.0.1
share.port8080
share.protocolhttp
site.public.groupGROUP_EVERYONE

Alfresco:Type=Configuration, Category=thirdParty

Object Type =thirdparty$default

This MBean provides information about the third party modules configured.

Alfresco:Name=FileServerConfig (editable)

Object Type =com.sun.proxy$Proxy108

This MBean allows management and monitoring of the FTP servers configured. See the Repo Admin ConsoleVirtual File Systems - File Servers for information about these editable attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-fileservers.

Alfresco:Name=Log4jHierarchy (editable)

Object Type =org.apache.log4j.jmx.HierarchyDynamicMBean

This MBean is an instance of theHierarchyDynamicMBean class provided with log4j that allows adjustments to be made to the level of detail included in the server logs. Not all attributes forAlfresco:Name=Log4jHierarchy are editable; only those that are editable are shown in this table.

Attribute nameExample value
thresholdALL

Threshold is a special attribute that controls the server-wide logging threshold. It is not cluster aware. Its value must be the name of one of the log4j logging levels.

CAUTION: Any messages logged with a priority lower than this threshold will be filtered from the logs. The default value is ALL, which means no messages are filtered, and the highest level of filtering is OFF which turns off logging altogether (not recommended).

You can add a new logger toLog4jHierarchy by selecting theOperations > addLoggerMBean operation in JConsole and specify the string and priority for the new logger MBean. The bean will be given an additional read-only property for that logger and a new MBean will be registered in the#log4j:logger=* tree, allowing management of that logger.

It is not normally necessary to use this operation, because the server pre-registers all loggers initialized during startup. However, if the logger you’re interested in was not initialized at this point, you’ll have to add a logger. Add the fully qualified name of the logger as an argument and if successful, the object name of the newly registered MBean for managing that logger is returned. The logger is then displayed in the attribute list of log4j loggers.

For example, if in Java classorg.alfresco.repo.admin.patch.PatchExecuter the logger is initialized as follows:

private static Log logger = LogFactory.getLog(PatchExecuter.class);

Then the logger name would beorg.alfresco.repo.admin.patch.PatchExecuter.

Alfresco:Name=Schedule (editable)

Object Type =org.alfresco.enterprise.scheduler.MonitoredRAMJobStore$MonitoredCronTrigger

This MBean provides information on the triggers that are configured, for example, those that are started by cron jobs or other events. You can fire a trigger by selecting the required MBean trigger andOperations > executeNow. The selected trigger is started.

Alfresco:Name=WorkflowInformation (editable)

Object Type =org.alfresco.enterprise.repo.management.Workflow

Exposes information about the workflow management interface for Activiti definitions and tasks. The attributes forAlfresco:Name=WorkflowInformation are shown in this table.

Attribute nameExample value
ActivitiEngineEnabledtrue
ActivitiWorkflowDefinitionsVisibletrue
NumberOfActivitiTaskInstances0
NumberOfActivitiWorkflowDefinitionsDeployed9
NumberOfActivitiWorkflowInstances0

Important: TheActivitiEngineEnabled attribute is enabled by default. It is recommended that you do not change (or disable) this property via the JMX client.

See the Repo Admin ConsoleRepository Services - Process Engines for information about these editable attributes:http://<hostname>:<portnumber>/alfresco/service/enterprise/admin/admin-processengines.

log4j:logger=*

An instance of theLoggerDynamicMBean class provided with log4j that allows adjustments to be made to the level of detail included in the logs from an individual logger.

Not all attributes forlog4j:logger=* are editable; only those that are editable are shown in this table.

Attribute nameExample value
priorityWARN

Priority is a special attribute that specifies the minimum log4j logging level of messages from this logger to include in the logs. For example, a value of ERROR would mean that messages logged at lower levels such as WARN and INFO would not be included.

You can change the priority of any log4j attribute by selecting the required MBean andAttributes > priority. The new value does not prevail after a shutdown. For a list of possible priority values, seeLog4j priority settings.

Edit this page

Suggest an edit on GitHub
By clicking "Accept Cookies", you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.View Cookie Policy.

[8]ページ先頭

©2009-2025 Movatter.jp