Sie sehen sich Hilfeinhalte der folgenden Version an:
- 6.5
- 6.4
- 6.2
- Ältere Versionen
When the deployment is a publish farm, members need to be able to log in and see their data on any publish node.
Users and user groups (user data) created in the publish environment are not needed in the author environment.
Most user data created in the author environment is intended to remain in the author environment and not be copied to publish instances.
Registration and modifications made on one publish instance need to be synchronized with other publish instances in order for them to have access to the same user data.
As of AEM 6.1, when user synchronization is enabled, user data is automatically synchronized across the publish instances in the farm and are not created on author.
The user data, along with their ACLs, are stored in the Oak Core, the layer below Oak JCR, and are accessed using the Oak API. With infrequent updates, it is reasonable for user data to be synchronized with other publish instances using Sling Content Distribution (Sling distribution).
The benefits of user sync using Sling distribution, compared to traditional replication are :
- users, user profiles and user groups created on publish are not created on author
- Sling distribution sets properties in jcr events, making it possible to act within publish-side event listeners without concern for infinite replication loops
- Sling distribution only sends user data to non-originating publish instances, eliminating unnecessary traffic
- ACLs set in the user node are included in the sychronization
Hinweis:
If sessions are required, it is recommended to either use an SSO solution or use sticky session and have customers log in if they get switched to another publsher.
Vorsicht:
Synchronization of the administrators group is not supported, even when user sync is enabled. Instead, a failure to 'import the diff' will be logged in the error log.
Therefore, when the deployment is a publish farm, if a user is added to or removed from the administrators group, the modification must be manually made on each publish instance.
Hinweis:
By default, user sync is disabled.
Enabling user sync involves modifying existing OSGi configurations.
No new configurations should be added as a result of enabling user sync.
User sync relies on the author environment to manage the user data distributions, even though the user data is not created on author. Much, but not all, of the configuration takes place in the author environment and each step clearly identifies whether it is to be performed on author or publish.
Following are the steps necessary to enable user synchronization, followed by a Troubleshooting section :
1) If users and user groups have already been created on one publisher, it is recommended to manually sync the user data to all publishers prior to configuring and enabling user sync.
Once user sync is enabled, only newly created users and groups are syncrhonized.
2) Ensure the latest code has been installed :
Enable user sync
- on author
- sign in with administrator privileges
- access the Web Console
- for example, http://localhost:4502/system/console/configMgr
- locate Apache Sling Distribution Agent - Sync Agents Factory
- select the existing configuration to open for edit (pencil icon)
Verify name : socialpubsync - select the Enabled checkbox
- select Save
- select the existing configuration to open for edit (pencil icon)

Configure permissions
This authorized user will be used in step 3 to configure Sling distribution on author.
- on each publish instance
- sign in with administrator privileges
- access the Security Console
- for example, http://localhost:4503/useradmin
- create a new user
- for example, usersync-admin
- add this user to the administrators user group
- add ACL for this user to /home
- Allow jcr:all with restriction rep:glob=*/activities/*
Vorsicht:
A new user must be created.
- The default user assigned is admin.
- Do not use communities-user-admin user.
- access CRXDE Lite
- for example, http://localhost:4503/crx/de
- select /home node
- in right pane, select the Access Control tab
- select the + button to add an ACL entry
- Principal: search for user created for user sync
- Type: Allow
- Privileges: jcr:all
- Restrictions rep:glob: */activities/*
- select OK
- select Save All

See also
- Access Right Management
- Troubleshooting section Modify Operation Exception During Response Processing.
Configure permissions
Once an authorized user, a member of the administrators user group, has been created on all publish instances, that authorized user must be identified on author as having permission to sync user data from author to publish.
- on author
- sign in with administrator privileges
- access the Web Console
- for example, http://localhost:4502/system/console/configMgr
- locate Adobe Granite Distribution - Encrypted Password Transport Secret Provider
- select the existing configuration to open for edit (pencil icon)
Verify property name : socialpubsync-publishUser - set the username and password to the authorized user created on publish in step 2
- for example, usersync-admin

Enable user sync
- on publish :
- sign in with administrator privileges
- access the Web Console
- for example, http://localhost:4503/system/console/configMgr
- locate Apache Sling Distribution Agent - Queue Agents Factory
- select the existing configuration to open for edit (pencil icon)
Verify Name : socialpubsync-reverse - select the Enabled checkbox
- select Save
- select the existing configuration to open for edit (pencil icon)
- repeat for each publish instance

Enable group sync
- on each publish instance :
- sign in with administrator privileges
- access the Web Console
- for example, http://localhost:4503/system/console/configMgr
- locate Adobe Granite Distribution - Diff Observer Factory
- select the existing configuration to open for edit (pencil icon)
Verify agent name : socialpubsync-reverse - select the Enabled checkbox
- select Save
- select the existing configuration to open for edit (pencil icon)

(Optional) modify polling interval
By default, author will poll for changes every 30 seconds. To alter this interval :
- on author
- sign in with administrator privileges
- access the Web Console
- for example, http://localhost:4502/system/console/configMgr
- locate Apache Sling Distribution Trigger - Scheduled Triggers Factory
- select the existing configuration to open for edit (pencil icon)
- Verify Name : socialpubsync-scheduled-trigger
- set the Interval in Seconds to the desired interval
- select Save
- select the existing configuration to open for edit (pencil icon)

The default configuration is for a single publish instance. As the reason for enabling user sync is to synchronize multiple publish instances, such as for a publish farm, the additional publish instances will need to be added to the Sync Agents Factory.
Add Publish Instances :
- on author
- sign in with administrator privileges
- access the Web Console
- for example, http://localhost:4502/system/console/configMgr
- locate Apache Sling Distribution Agent - Sync Agents Factory
- select the existing configuration to open for edit (pencil icon)
Verify Name : socialpubsync
- select the existing configuration to open for edit (pencil icon)

- Exporter Endpoints
There should be an exporter endpoint for each publisher. For example, if there are 2 publishers, localhost:4503 and 4504, there should be 2 entries:- http://localhost:4503/libs/sling/distribution/services/exporters/socialpubsync-reverse
- http://localhost:4504/libs/sling/distribution/services/exporters/socialpubsync-reverse
- Importer Endpoints
There should be an importer endpoint for each publisher. For example, if there are 2 publishers, localhost:4503 and 4504, there should be 2 entries:- http://localhost:4503/libs/sling/distribution/services/importers/socialpubsync
- http://localhost:4504/libs/sling/distribution/services/importers/socialpubsync
- select Save
(Optional) Sync additional JCR nodes
If there is custom data that is desired to be synchronized across multiple publish instances, then :
- on each publish instance :
- sign in with administrator privileges
- access the Web Console
- for example, http://localhost:4503/system/console/configMgr
- locate AEM Communities User Sync Listener
- select the existing configuration to open for edit (pencil icon)
Verify Name : socialpubsync-scheduled-trigger

- Node Types
This is the list of node types that will synchronize. Any node type other than sling:Folder needs to be listed here (sling:folder is handled separately).
Default list of node types to synchronize :- rep:User
- nt:unstructured
- nt:resource
- Ignorable Properties
This is the list of properties that will be ignored if any change is detected. Changes to these properties might get synchronized as a side effect of other changes (since synchronization is always at the node level), but changes to these properties will not by themselves trigger synchronization.
Default property to ignore :- cq:lastModified
- Ignorable Nodes
Subpaths that will be entirely ignored during synchronization. Nothing under these subpaths will be synchronized at any time.
Default nodes to ignore :- .tokens
- system
- Distributed Folders
Most sling:Folders are ignored because synchronization is not necessary. The few exceptions are listed here.
Default folders to synchronize- setments/scoring
- social/relationships
- activities
Vorsicht:
If the Sling ID matches between two or more publish instances then user group sync will fail.
If the Sling ID is the same for multiple publish instances in a publish farm, then user groups will not be synchronized.
To validate that all Sling ID values differ, on each publish instance :
- browse to http://host:port/system/console/status-slingsettings
- check the value of Sling ID

If the Sling ID of a publish instance matches the Sling ID of any other publish instance, then :
- stop one of the publish instances that has a matching Sling ID
- in the crx-quickstart/launchpad/felix directory
- search for and delete the file named sling.id.file
- for example, on a Linux system:
rm -i $(find . -type f -name sling.id.file) - for example, on a Windows system:
use windows explorer and search for sling.id.file
- for example, on a Linux system:
- search for and delete the file named sling.id.file
- start the publish instance
- on startup it will be assigned a new Sling ID
- validate that the Sling ID is now unique
Repeat these steps until all publish instances have an unique Sling ID.
In order for updates to sync properly, it is necessary to modify the vault package builder for user sync :
- on each AEM publish instance
- access the Web Console
- for example, http://localhost:4503/system/console/configMgr
- locate the Apache Sling Distribution Packaging - Vault Package Builder Factor
- Builder name: socialpubsync-vlt
- select the edit icon
- add two Package Filters :
- /home/users|-.*/.tokens
- /home/users|-.*/rep:cache
- policy handling :
- to overwrite existing rep:policy nodes with new ones, add a third Package Filter :
- /home/users|+.*/rep:policy
- to prevent policies from being distributed, set
- Acl Handling : IGNORE
- to overwrite existing rep:policy nodes with new ones, add a third Package Filter :

By design, users and profiles created in the publish environment (self-registration) do not appear in the author environment.
When the topology is a publish farm and user sync has been correctly configured, the user and user profile is synchronized across the publish farm using Sling distribution.
By design, user data created in the publish environment does not appear in the author environment and vice versa.
When the User Administration and Security console is used to add new users in the publish environment, user sync will synchronize the new users and their group membership to other publish instances, if necessary. User sync will also synchronize user groups created through the security console.
To take user sync offine, in order to remove a publisher or manually sync data, the distribution queue must be empty and quiet.
To check the state of the distribution queue :
- on author :
- using CRXDE Lite
- look for entries in /var/sling/distribution/packages
- folder nodes named with the pattern distrpackage_*
- look for entries in /var/sling/distribution/packages
- using Package Manager
- look for pending packages (not yet installed)
- named with the pattern socialpubsync-vlt*
- created by communities-user-admin
- look for pending packages (not yet installed)
- using CRXDE Lite
When the distribution queue is empty, disable user sync :
- on author
- uncheck the Enabled checkbox for Apache Sling Distribution Agent - Sync Agents Factory
Once tasks are completed, to re-enable user sync :
- on author
- check the Enabled checkbox for Apache Sling Distribution Agent - Sync Agents Factory
User Sync Diagnostics is a tool that checks the configuration and attempts to identify any problems.
On author, simply navigate from the main console through Tools, Operations, Diagnosis, User Sync Diagnostics.
Simply entering the User Sync Diagnostics console will display the results.
This is what is displayed when User Synchronization has not been enabled :

When the diagnoistic is run from the author environment, the pass/fail results will include an [INFO] section displaying the list of configured publish instances for confirmation.
Included in the list is an URL for each publish instance that will run the diagnostics for that instance. The url param syncUser is appended to the diagnostics URL with its value set to the authorized sync user created in Step 2.
Note : before launching the URL, the authorized sync user must already be signed into that publish instance.

When user sync fails to work, the most common problem is that additional configurations were added. Instead, the existing default configuration should have been edited.
Following are views of how the edited, default configurations should appear in the Web Console. If more than the one instance appears, the added configuration should be removed.





If the following is visible in the log :
org.apache.sling.servlets.post.impl.operations.ModifyOperation Exception during response processing.
java.lang.IllegalStateException: This tree does not exist
Then verify that the section 2. Create Authorized User was properly followed.
This section describes creating an authorized user, who exists on all publish instances, and identifying them in the 'Secret Provider' OSGi config on author. By default, the user is admin.
The authorized user should be made a member of the administrators user group and permissions for that group should not be altered.
The authorized user should explicitly have the following privileges and restriction on all publish instances :
path | jcr:all | rep:glob |
/home | X | */activities/* |
/home/users | X | */activities/* |
/home/groups | X | */activities/* |
As a member of the administrators group, the authorized user should have the following privileges on all publish instances :
path | jcr:all | jcr:read | rep:write |
/etc/packages/sling/distribution | X | ||
/libs/sling/distribution | X | ||
/var | X | ||
/var/eventing | X | X | |
/var/sling/distribution | X | X |
If the Sling ID matches between two or more publish instances then user group sync will fail.
See section 9. Unique Sling ID
- on publisher on which users and user groups exist :
- if enabled, disable user sync
- create a package of /home
- when editing the package
- Filters tab : Add Filter : Root path: /home
- Advanced tab : AC Handling : Overwrite
- when editing the package
- export the package
- on other publish instances :
To configure or enable user sync, go to step 1: Apache Sling Distribution Agent - Sync Agents Factory
When a publish instance becomes unavailable, it should not be removed if it will be back online in the future. Changes will queue up for the publisher, and once it is back online, the changes will be processed.
If the publish instance will never be back online, if it is offline permanently, then it must be removed because the queue buildup will result in noticeable disk space usage in the author environment.
When a publisher is down, the author log will have exceptions similar to :
28.01.2016 15:57:48.475 ERROR
[pool-12-thread-34-org_apache_sling_distribution_queue_socialpubsync_endpoint1
(org/apache/sling/distribution/queue/socialpubsync/endpoint1)]
org.apache.sling.distribution.agent.impl.SimpleDistributionAgent [agent][socialpubsync] could not deliver package distrpackage_1454014575838_a2b45ec8-0400-42f3-bed8-ae09b66381cb
org.apache.sling.distribution.packaging.DistributionPackageImportException: failed in importing package ...
To remove a publisher from the Apache Sling Distribution Agent - Sync Agents Factory, the distribution queue must be empty and quiet.
- on author :
- Take user sync offline
- follow step 7 to remove the publisher from both server lists :
- Exporter Endpoints
- Importer Endpoints
- re-enable user sync
- check the Enabled checkbox for Apache Sling Distribution Agent - Sync Agents Factory