Answer for How to run EMS as a different user on Linux?
Hi, You need to modify 2 lines in the run_daemon_ems.sh script. In the lines shown below, change the first "evostream" to the user ID and the second "evostream" to the group ID. Use this script to run the EMS in daemon mode as another user in Linux.xUID=`id -u evostream`
xGID=`id -g evostream`
Cheers,
Don