Use this procedure to download, install, and configure Apache web server for use with the Management Console on UNIX and Linux.
cd <apache-dir>/conf/extras/ vi httpd-vhosts.confAdd the following lines:
<VirtualHost *:80> ServerAdmin build@yourdomain.com DocumentRoot /usr/local/buildforge/ui/public ServerName ausbuild01.yourdomain.com ServerAlias build.yourdomain.com mc.yourdomain.com #optional server aliases ErrorLog logs/ausbuild.error_log CustomLog logs/ausbuild.access_log common </VirtualHost>
PassEnv LD_LIBRARY_PATH PassEnv NLS_LANG PassEnv ORACLE_HOME PassEnv ORA_NLS PassEnv ORA_NLS32 PassEnv TNS_ADMIN
Add the following lines to the script that starts Apache at boot time (commonly /etc/init.d/httpd or /etc/init.d/apache2), filling in for <value>:
export LD_LIBRARY_PATH=<value> export NLS_LANG=<value> export ORACLE_HOME=<value> export ORA_NLS=<value> export ORA_NLS32=<value> export TNS_ADMIN=<value>