Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

I have created the system user using yaml config but not reflected in admin console.

Avatar

Level 2

I have created the system user using yaml config as bellow.

Ashok884_0-1641918324675.png

 

After this /system/console/actool configuration only i am able to see the user in admin console but i think it should be reflected automatically after build.

But after build user not getting reflected.

 

Does anyone know how to create AC Tool configuration in code level?? or any mapping is required??.

1 Accepted Solution

Avatar

Correct answer by
Level 6

I have used the .config extension in the config file and got the below syntax working:

scripts=[

               "create service user <username>

                set ACL on <path> allow jcr:read,jcr:write for <username>

               end

               "

                ] 

 

Replace path and username with the required value.

View solution in original post

1 Reply

Avatar

Correct answer by
Level 6

I have used the .config extension in the config file and got the below syntax working:

scripts=[

               "create service user <username>

                set ACL on <path> allow jcr:read,jcr:write for <username>

               end

               "

                ] 

 

Replace path and username with the required value.