jvgutierrez commented on issue #11869:
URL: 
https://github.com/apache/trafficserver/issues/11869#issuecomment-2479113450

   ```diff
   -  if (initgroups(pwd->pw_name, pwd->pw_gid) != 0) {
   -    Fatal("switching to user %s, failed to initialize supplementary groups 
ID %ld", pwd->pw_name, (long)pwd->pw_gid);
   +  if (geteuid() == 0) {
   +    if (initgroups(pwd->pw_name, pwd->pw_gid) != 0) {
   +      Fatal("switching to user %s, failed to initialize supplementary 
groups ID %ld", pwd->pw_name, (long)pwd->pw_gid);
   +    }
   ```
   
    could be a potential solution for this, @maskit what do you think?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to