I’m installing the TIBCO EMS Central Administration Server on my new Red Hat Enterprise Linux 5 host now. First issue was to configure and start Apache:
[alert] getpwuid: couldn't determine user name from uid 4294967295, you probably need to modify the User directive
this error message was in the error_log file.
Found solution is to add new user and group into the system:
# groupadd www
# useradd -g www www
and into the httpd.conf file:
User www
Group www
Hope this will be only one issue, I will post all of my installation steps in the next post.

