Chuyển đến nội dung chính

[USER & GROUP] How to change the admin password

The Problem:

You want to change the cq5.6/AEM admin password on the publish and server instance.

The Solution:

CQ 5.6 or later:

  1. Go to: (Or whatever the address/port of your admin instance is) http://localhost:4502/libs/granite/security/content/useradmin.html

  1. Double click on the admin user, scroll down, click on the pencil icon, and change the admin user. NOTE: the first password is the new password, and the second password in the current password. So, for a fresh install, put in the new password first, followed by admin as the second password.

  1. Repeat for http://localhost:4503/libs/granite/security/content/useradmin.html or equivalent.

CQ 5.4:

To change the password for the CQ admin account, you need to make changes in both CRX and the OSGi Console.

Changing the CQ admin password in the CRX console. To change the admin account in the CRX console:

  1. Open the CRX console at http://<server>:<port_number>/crx
  2. Log in as admin to the crx.default workspace.
  3. Go into the User Administration section; then navigate to, and select, the admin user.
  4. In the Properties list, click on Change Password; this will open the Change Password window.
  5. Enter the new password, then re-enter to confirm.
  6. Click OK to save your changes.

Changing the CQ admin password in the OSGi Apache Felix console. To change the admin account in the OSGi Apache Felix console:

  1. Navigate to http://<server>:<port_number>/system/console/configMgr, and login as admin, to open Configurations in the Apache Felix console.
  2. In the Configurations menu, select the indented entry below Day CRX Sling Client Repository.
The name should have a hexidecimal number at the end; for example:
com.day.crx.sling.client.impl.CRXSlingClientRepository.8d0b589e-fe6b-470e-8fc4-eed99d8b1d80
file

NOTE: Make sure there is only one instance of Day CRX Sling Client Repositoryconfiguration (i.e. one indented entry with a hexidecimal number) and that the adminpassword is changed there.
Clicking on the entry Day CRX Sling Client Repository will open a similar dialog, but this will be for a new instance (and will show default values); if you click Save for this (and refresh the list) then you will see two instances (i.e. two indented entries).
  1. The configuration dialog will be opened. Verify that the Persistent Identity (PID), as displayed in theConfiguration Information section, contains the long hexadecimal string.
file
  1. In the Admin Password field enter the same password as the one you entered in the CRX console.
  2. Click Save to save your changes.

Nhận xét

Bài đăng phổ biến từ blog này

[PERFORMANCE] Adobe WEM/CQ performance tuning

Adobe WEM/CQ performance tuning Contents Caching-related configurations CRX Bundle cache CRX Search index handler (Lucene) cache Tar PM index cache Scalability Maintenance Optimizing Tar Files (for Tar Persistence Manager) Data Store Garbage Collection Main documentation you should consult first: http://dev.day.com/docs/en/cq/current/deploying/performance.html http://dev.day.com/content/kb/home/cq5/CQ5Troubleshooting/performancetuningtips.html Caching-related configurations CRX Bundle cache CRX caches bundles, consisting of a node with all its properties. This is used by all bundle-based Persistence Managers. The default size of BundleCache is 8 MB. If this is too small it can cause an excessive number of read-accesses to the underlying persistence layer. Set the bundleCacheSize to something larger than the default. See more here: http://dev.day.com/docs/en/cq/current/deploying/performance.html#CRX%20Bundle%20Cache CRX Search index handler (Lucene...

[Query Builder] Advanced Search

Using the Advanced Search When using a list, select from the 'Build list using' options 'Advanced Search.' This will open a new tab in the list window with one text box labeled: 'Querybuilder Predicate Notation.' This is asking for a few lines of code to define search parameters. Example Code - With Explanations of Results Searching for Pages type=cq:Page property=jcr:content/jcr:title property.value=Places 'type' defines what sort of object you'll be searching for (it's usually a page). 'property' defines what property of the object you'll be filtering by; in this case, its by the title. 'property.value' defines your search term. So this search would be searching all PAGES with the TITLE of PLACES. So it would find every page titled Places. *IMPORTANT* Searches by title ARE case-sensitive, so 'Places' is not the same as 'places'. type=cq:Page path=/cq/sandbox property=jcr:cont...

[CQ6-SYSTEM] MAINTAINING THE REPOSITORY - Reduce repository size (cleanup repository)

Compacting Tar Files As data is never overwritten in a tar file, the disk usage increases even when only updating existing data. To make up for the growing size of the repository, AEM employs a garbage collection mechanism called Tar Compaction. The mechanism will reclaim disk space by removing obsolete data from the repository. Revision Clean Up By default, tar file compaction is automatically run each night between 2 am and 5 am. The automatic compaction can be triggered manually in the Operations Dashboard via a maintenance job called Revision Clean Up. To start Revision Clean Up you need to: Go to the AEM Welcome Screen. In the main AEM window, go to Tools - Operations - Dashboard - Maintenance or directly browse to http://localhost:4502/libs/granite/operations/content/maintenance.html Click on Daily Maintenance Window. Hover over the Revision Clean Up window and press the Start button. The icon will turn orange to indicate that the Revision Clean Up ...