Quel utilisateur Apache s'exécute sous le nom d'Ubntu

ps -ef | egrep '(httpd|apache2|apache)' | grep -v `whoami` | grep -v root | head -n1 | awk '{print $1}'
GutoTrosla