Operating System - HP-UX
1834200 Members
3102 Online
110066 Solutions
New Discussion

How to build a 64-bit Apache Web Server on HP-UX Itanium?

 
SOLVED
Go to solution
went_2
Advisor

How to build a 64-bit Apache Web Server on HP-UX Itanium?

I failed to build a 64-bit Apache Web Server on HP-UX Itanium. Can anybody help me? Thank you.
Following is what I did:

I tried following commands to build 64-bit Apache Web Server ::
export CFLAGS="-mlp64"
export CPPFLAGS="-mlp64"
./configure --prefix=
make
make install

After that, I successfully got Apache Web Server installed, and I got following information by "httpd -V" command ::
bash-3.00$ ./httpd -V
Server version: Apache/2.0.55
Server built: Jun 27 2006 19:51:23
Server's Module Magic Number: 20020903:11
Architecture: 64-bit
...

But the Web Server cannot start, not giving me any error message or response.


(If I add one line in httpd.conf file to load a customized module, I will get an error when I try to start the Web Server :" aCC runtime: Use of "-mt" must be consistent during both compilation and linking.")
6 REPLIES 6
Arunvijai_4
Honored Contributor
Solution

Re: How to build a 64-bit Apache Web Server on HP-UX Itanium?

Hi,

This could be a multithreaded issue. Export CFLAGS and CPPFLAGS="-mlp64 -mt" and try to build it. Also, what is # file httpd ?

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
Steven E. Protter
Exalted Contributor

Re: How to build a 64-bit Apache Web Server on HP-UX Itanium?

Shalom,

Perhaps don't build it, install it 64 bit ready. I don't see anything in the stopping this.

http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXWSATW215

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
went_2
Advisor

Re: How to build a 64-bit Apache Web Server on HP-UX Itanium?

Thank you. I have tried HP-UX Apache-based Web Server, and it works well.

But I must use Apache2 from Apache.org in my situation.
went_2
Advisor

Re: How to build a 64-bit Apache Web Server on HP-UX Itanium?

Duplicated with thread: "
Got problem when building 64-bit Apache Web Server on HP-UX Itanium. "

thank u.
Steven E. Protter
Exalted Contributor

Re: How to build a 64-bit Apache Web Server on HP-UX Itanium?

Note:
But I must use Apache2 from Apache.org in my situation.

HP downloaded it from apache.org.

Then they ported it to HP-UX.

A simplification, but true.

Have fun.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
went_2
Advisor

Re: How to build a 64-bit Apache Web Server on HP-UX Itanium?

Maybe I have to port it to HP-UX by myself now.