Expand my Community achievements bar.

Adobe Summit 2025: AEM Session Recordings Are Live! Missed a session or want to revisit your favorites? Watch the latest recordings now.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

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.