Operating System - Tru64 Unix
1827808 Members
2109 Online
109969 Solutions
New Discussion

Re: installation of apache/php/oracle on tru64 unix

 
RAGHAVENDRA N
New Member

installation of apache/php/oracle on tru64 unix

we are facing a COMPILATION problem for
APACHE/PHP/ORACLE/TRU64 on COMPAQ ALPHA SERVER:

SYSTEM SPECIFICATION
____________________


VERSION TRU64 UNIX- VER 5.1B
SERVER- ES40
APACHE SOURCE-1.3.29(UNIX)
PHP-4.3.4

WHAT WE HAVE DONE
_________________

we extracted apache 1.3.29 tar file and configured as

#./configure --prefix=/usr/users/dirq/web_apache --enable-module=so
#make
#make install
we started apache as
#/usr/users/dirq/web_apache/bin/apachectl start

apache started fine

then we extracted PHP-4.3.4 tar file and configured as
#./configure --with-oci8=$ORACLE_HOME --with-apxs=/usr/users/dirq/web_apache/bin/apxs

--enable-sigchild
#make
#make install

copied php.ini-dist as /usr/users/lib/php.ini

edited the /usr/users/dirq/web_apace/conf/httpd.conf by lines


LoadModule php4_module libexec/libphp4.so

Addtype application/x-httpd-php .php


Every make and make install worked fine without any error .

After this started Apache again, but this time apache did not start,

ERROR
_____

the httpd.pid file in /usr/users/dirq/web_apache/logs was not created

the error_log file showed the error as


--
syntax error on the line 206 of /usr/users/web_apache/conf/httpd.conf
cannot load /usr/users/dirq/web_apache/libexec/libphp4.so into server: dlopen libexc.so:
symbol "_exc_continue" unresolved.
___


please guide us to solve this problem by giving detailed compilation procedure.

thankyou

RAGHAVENDRA.N

2 REPLIES 2
Ralf Puchner
Honored Contributor

Re: installation of apache/php/oracle on tru64 unix

This is not Tru64 dependant, please post this question on an Apache support forum.

HP provide an compiled version via the "internet express kit", have a look to http://www.tru64unix.compaq.com -> applications -> internet
Help() { FirstReadManual(urgently); Go_to_it;; }
Johan Brusche
Honored Contributor

Re: installation of apache/php/oracle on tru64 unix


Don't know if you made a typo, but the symbol in libexc.so has 2 underscores in front of exc_continue
To check:

cd /usr/shlib
odump -t libexc.so | grep continue

The result should be exc_continue and __exc_continue, if not, you have a non-standard libexc.so

Johan.

_JB_