Apache Web Server

Hi,
Can someone help me for the Apache Web Server files for HP-UX 11.0 systems.
Is there any download available?

Thanks in Advance
Anent

Here are the Apache binary distros for HPUX:

http://httpd.apache.org/dist/httpd/binaries/hpux/

Thanks Neo,

I have installed that Apache in /usr/local/apache

after executing the file
/usr/local/apache/bin/apachectl start

i got
/usr/local/apache/bin/apachectl start: httpd started

but i am not getting Process with the name "httpd"
also i am not able use the system as Webserver.
why,
But this work well in Sun Solaris.

Anent

Check the /usr/local/apache/logs/error_log... It should give you a few hints on what may be wrong...

yes LivinFree,
I got the error msgs like ..
[Wed Nov 14 01:05:38 2001] [error] (22)Invalid argument: shmctl() could not set segment #1204
[Wed Nov 14 01:05:38 2001] [alert] (22)Invalid argument: setgid: unable to set group id to Group 4294967294
[Wed Nov 14 01:05:38 2001] [alert] (22)Invalid argument: setgid: unable to set group id to Group 4294967294
[Wed Nov 14 01:05:38 2001] [alert] (22)Invalid argument: setgid: unable to set group id to Group 4294967294
[Wed Nov 14 01:05:38 2001] [alert] (22)Invalid argument: setgid: unable to set group id to Group 4294967294
[Wed Nov 14 01:05:38 2001] [alert] (22)Invalid argument: setgid: unable to set group id to Group 4294967294
[Wed Nov 14 01:05:38 2001] [notice] Apache/1.3.20 (Unix) configured -- resuming normal operations
[Wed Nov 14 01:05:38 2001] [alert] Child 28209 returned a Fatal error...
Apache is exiting!

what shall i do to proceed?
Anent

Hi LivinFree,
I tried it with permissions changed,
I got the error_log file as
[Fri Nov 16 06:28:01 2001] [crit] (13)Permission denied: make_sock: could not bind to port 80

What i have to change?

Anent

Hmm... Are you running apachectl as root? If not, you should be.
Port 80 is in the reserved range, that only root can use.

The error before that is one that I can't be much help with.

Anyone here good with Apache?

As LivinFree said, port 80 is a root-privileged port, so you should start Apache as root. Or get away from the root-privileged port by changing it to something higher than 1024. The config file will be in Apache/conf directory, and will be either httpd.conf or httpds.conf. Do "ls -lu" on these two files to see which is being accessed. The line you want to change is "Port 80".

Livinfree & Jimbo,
Thanks a lot.

I am running apachectl as root only. but eventhough i am getting the same.

Also I tried as changing the Port 80 to Port 1080.

I got the results in the Log file as :

[Sat Nov 17 01:50:53 2001] [warn] pid file /usr/local/apche/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Sat Nov 17 01:50:53 2001] [error] (22)Invalid argument: shmctl() could not set segment #7800
[Sat Nov 17 01:50:53 2001] [notice] Apache/1.3.20 (Unix) configured -- resuming normal operations

I cant understand about the error :
Invalid argument: shmctl() could not set segment #7800.

What should i do to proceed?
Anent

Looks like you did not get a clean shutdown, still had some Apache processes running, and this new startup could not gain access to a shared memory segment.

Shut Apache, and make sure all Apache processes are gone:

ps -ef | grep -i apache

Kill any that are still hanging around. Then clean out the Apache/logs directory and try starting up again.