Expand my Community achievements bar.

SOLVED

AEM security

Avatar

Level 2

I am using AEM 6.0 for production use.

I want to implement some additional security to my AEM instance.

Is there a way to trigger an email to a certain set of people whenever there is a login from 'admin' credential.

Also can I set a different password for triggering OAK reindexing

Are there any other ways I can ensure no one can misuse the admin credentials.

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

The admin account on AEM is like the windows administrator or the Unix root account: if you have that, you can do everything. You should provide a secure password and only use it when necessary. In many projects it is typically stored with the operation team because they require it for some operations and also analyzing issues.

specifically to your questions: You can write an observation listener to check for changes to /home/users/a/admin and send out emails when the login-token is changing.

for oak-reindexing: no, that's not possible, because this is secured by ACLs, and for admin no ACLs are checked.

HTH,

Jörg

View solution in original post

2 Replies

Avatar

Correct answer by
Employee Advisor

The admin account on AEM is like the windows administrator or the Unix root account: if you have that, you can do everything. You should provide a secure password and only use it when necessary. In many projects it is typically stored with the operation team because they require it for some operations and also analyzing issues.

specifically to your questions: You can write an observation listener to check for changes to /home/users/a/admin and send out emails when the login-token is changing.

for oak-reindexing: no, that's not possible, because this is secured by ACLs, and for admin no ACLs are checked.

HTH,

Jörg