You could try:
ps -ax -o uname,cmd | grep "irisdb WD" | grep -v "grep"

-ax will get all the running processes including ones that aren't running on a terminal, retrieve the username, and command that started the process. We then use grep to filter out the exact process we need. 

Thanks @Jean Millette and @Timothy Leavitt for the help with this!