Sponsored Content
Operating Systems HP-UX Help troubleshooting new Apache installation on HPUX 11.31 Post 302928726 by feliper on Sunday 14th of December 2014 11:34:07 PM
Old 12-15-2014
Hammer & Screwdriver Help troubleshooting new Apache installation on HPUX 11.31

Hi Guys!

I have a very odd problem while installing Apache in an HPUX 11.31, What I did was downloaded the latest webserver suite from hp software, installed using swinstall, everything was extracted properly.

The apache version was 2.2.15

Now the issue comes when I run it, it starts normally but after a few seconds it starts to log some odd errors that I'm not familiar with... check them out:

Code:
[Sat Dec 13 00:18:37 2014] [notice] Apache/2.2.15 HP-UX_Apache-based_Web_Server (Unix) DAV/2 mod_ssl/2.2.15 OpenSSL/0.9.8zb 
configured -- resuming normal operations
[Sat Dec 13 00:18:37 2014] [info] Server built: Jul 11 2014 12:41:45
[Sat Dec 13 00:18:37 2014] [debug] worker.c(1875): AcceptMutex: sysvsem (default: sysvsem)
[Sat Dec 13 00:18:37 2014] [error] (14)Bad address: apr_socket_accept: (client socket)
[Sat Dec 13 00:18:38 2014] [error] (14)Bad address: apr_socket_accept: (client socket)
[Sat Dec 13 00:18:38 2014] [debug] worker.c(1434): taking over scoreboard slot from 23152 (quiescing)
[Sat Dec 13 00:18:39 2014] [alert] No active workers found... Apache is exiting!

The apache starts but then immediately exits, i tried changed the IP address in the Listen, and ServerName directive to localhost or any other configured ip in the server but I still have that error... I'm starting to think that theres a problem with the apache version but at this point I'm so clueless..

Last edited by Don Cragun; 12-15-2014 at 12:49 AM.. Reason: Add CODE tags and fix some typos.
 

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Apache 2.0 installation

Hi all! I've got big problems while installing Apache 2.0 on my HPUX 11 machine. I have configured the installation script with "./configure --prefix=/opt/apache" and run "make". All things looking good. But when i execute "make install" i have two errors, first: and second and the... (1 Reply)
Discussion started by: coredump2003
1 Replies

2. HP-UX

Netscape Installation for HPUX-11

Hello..... I installed netscape 4.0 for HPUX-11 but i don`t know to configure that , Maybe samone know how i can gate the procedure to installing NETSCAPE for HPUX-11 for user or server. Thank you in advance !!!! (3 Replies)
Discussion started by: yanly
3 Replies

3. Solaris

apache installation

I have installed sunsolaris 10 in sparc machine.In that how to run apache bydefault apache is installed on /etc file. I have logged in as a root changed the directory to cd /etc/apache2/ from there i have copied httpd.conf-example to httpd.conf #cp httpd.conf-example httpd.conf after... (6 Replies)
Discussion started by: ambavaram
6 Replies

4. HP-UX

Installation of Oracle on HPUX 11.31

I am having issues the below issues:- As per the documents Preinstallation Tasks I have linked the following files :- # cd /usr/lib # ln -s libX11.3 libX11.sl # ln -s libXIE.2 libXIE.sl # ln -s libXext.3 libXext.sl # ln -s libXhp11.3 libXhp11.sl # ln -s libXi.3 libXi.sl # ln -s... (0 Replies)
Discussion started by: grayhorns
0 Replies

5. Ubuntu

Apache Server troubleshooting

I'm having issues getting apache to respond to requests outside of my local LAN. If I goto my server URL (www .poillion. com) it says connecting... but never finishes and returns anything. I'm using Ubuntu Server 10.10. a) The DNS is working fine. It's pointed to my cable modem's IP and... (1 Reply)
Discussion started by: lorewap3
1 Replies

6. Shell Programming and Scripting

Apache webserver troubleshooting

Need assistance in getting apache installation troubleshooting.. - Compiled source code of apache webserver , Installed and configured apache, - started apache web server with no errors. - web browser doesnt open any pages . say "Page cannot be displayed". Need troubleshooting . - When i... (12 Replies)
Discussion started by: ajayram_arya
12 Replies
Apache::TestRun(3)					User Contributed Perl Documentation					Apache::TestRun(3)

NAME
Apache::TestRun - Run the test suite SYNOPSIS
DESCRIPTION
The "Apache::TestRun" package controls the configuration and running of the test suite. METHODS
Several methods are sub-classable, if the default behavior should be changed. "bug_report" The "bug_report()" method is executed when "t/TEST" was executed with the "-bugreport" option, and "make test" (or "t/TEST") fail. Normally this is callback which you can use to tell the user how to deal with the problem, e.g. suggesting to read some document or email some details to someone who can take care of it. By default nothing is executed. The "-bugreport" option is needed so this feature won't become annoying to developers themselves. It's automatically added to the "run_tests" target in Makefile. So if you repeateadly have to test your code, just don't use "make test" but run "t/TEST" directly. Here is an example of a custom "t/TEST" My::TestRun->new->run(@ARGV); package My::TestRun; use base 'Apache::TestRun'; sub bug_report { my $self = shift; print <<EOI; +--------------------------------------------------------+ | Please file a bug report: http://perl.apache.org/bugs/ | +--------------------------------------------------------+ EOI } "pre_configure" The "pre_configure()" method is executed before the configuration for "Apache::Test" is generated. So if you need to adjust the setup before httpd.conf and other files are autogenerated, this is the right place to do so. For example if you don't want to inherit a LoadModule directive for mod_apreq.so but to make sure that the local version is used, you can sub-class "Apache::TestRun" and override this method in t/TEST.PL: package My::TestRun; use base 'Apache::TestRun'; use Apache::TestConfig; __PACKAGE__->new->run(@ARGV); sub pre_configure { my $self = shift; # Don't load an installed mod_apreq Apache::TestConfig::autoconfig_skip_module_add('mod_apreq.c'); $self->SUPER::pre_configure(); } Notice that the extension is .c, and not .so. Don't forget to run the super class' c<pre_configure()> method. "new_test_config" META: to be completed perl v5.18.2 2015-06-18 Apache::TestRun(3)
All times are GMT -4. The time now is 07:09 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy