Tuesday, 28 June 2016

Reset the forgotten password

In this post, I am going to explain "How will you reset your AEM password if you have forgotten your password."

The default password for administrator user admin is admin. If the password was changed to something else, to reset your password to admin you have to follow some steps which are mention below:
  • Stop AEM instance.
  • Place the package reset_admin_pass_to_admin.zip in <AEM Home> / crx-quickstart / install (Create it, if there isn't one). 

  • Start AEM instance.
  • Package should have installed. It contains /home/user/a/admin/.content.xml with rep:password set to text admin encrypted.


  • Login as admin/admin.

Be Happy


Friday, 24 June 2016

Change default admin password of AEM

In this blog, I am going to explain that how can we change the default admin password. Sometime my colleagues want to change the admin password so this post is very useful for those guys.

To change the admin password we have to follow some steps which are given below:
  • Open the welcome screen. (http://localhost:4502/projects.html).


  •  Click on the Tools >> Operations >> Security >> Users. You will get the below screen. 

  • Click on the administrator link and find the account setting.

  • Click on Change Password.
  • Fill all the widgets and click OK.
  • Now your password has been changed.


Be Happy


Wednesday, 22 June 2016

Create New User in AEM

In this post I will Explain how to create new User in AEM.

For creating the AEM User with specific permissions we have to follow some steps as I will explain below:
  • Open admin console of AEM.
  • Open User console from main admin console.

  • Create new user by click on Edit by selecting create >> create user:

  • Now, The new editable widget will open:

  • Enter the Login ID, First Name, Last Name, Password, Confirm Password whatever you want.
  • Like, I will create the user with the name content-author.
  • Search the ID from the user list and click on that.
  • In the right hand side of the user list, user details screen will appear.
  • click the permission tab from the user details screen.
  • Select the permissions which we want to give the content-author.
  • If we want to give the permissions to content-author of read, modify, create and delete than we have to select only these same.
  • Now, content-author can read, modify, create and delete under apps, content, etc, home, libs, system,temp and var directory.
  • But, If you want to give the permission to content-author only for content modify, create and delete than you have to tick only on content.Like this:


  • Click Create.
  • Now, login with the new user and you will see that this user can only that things which you gave the permission to this user.

Be Happy

Tuesday, 14 June 2016

Renditions Creation for the Image

In this post, I will explain how to create different type of renditions for the image in Adobe CQ5.

When we upload the images in the DAM, Adobe CQ5 creates the renditions of an image that includes different size of the same image. This can be helpful when we need to create thumbnails or similar views of large or high resolution images.




If we want to create the renditions according to us than we have to configure the DAM Asset workflow.

For this, We have to go this path:

http://localhost:4502/etc/workflow/models/dam/update_asset.html

At this path we will see the page like this image-



Now, Go to the edit mode and double click on the thumbnail creation step.


After click the thumbnail creation step, We will find a pop up like this:-


Now, We have to go on process tab, in the process tab of the step we can add custom rendition values. After this save the workflow.


 
Now, while uploading the image, the configured thumbnails will be created.



Be Happy