Question

I have a bitnami Jenkins VM, how do I tell what user Jenkins is running as? I suspect it is Tomcat.

Was it helpful?

Solution 2

I would use ps to get the uid of the process, and grep for that in /etc/passwd

OTHER TIPS

If you have access to the gui, you can go to "manage jenkins" > "system information" and look for "user.name".

You could also create a Jenkins job containing a shell script box with the "whoami" command.

Use this command to see under which process your Jenkins server works on:

ps axufwwww | grep 'jenkins\|java' - 

To interpret the results, look for:

jenkins   1087  0.0  0.0  18740   396 ?        S    08:00   0:00 /usr/bin/daemon --name=jenkins
jenkins   1088  1.6 20.7 3600900 840116 ?      Sl   08:00   2:12  \_ /usr/bin/java

1087 and 1088 are the PIDs. They might differ for you.

ps aux | grep '/usr/bin/daemon' | grep 'jenkins' | awk {'print $1'}

The command will show running processes, then grep for a process running as a daemon that includes the string 'jenkins'. Finally, get the first row of the piped output which is the user that is running Jenkins.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top