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::Singleton(3pm)					User Contributed Perl Documentation				    Apache::Singleton(3pm)

NAME
Apache::Singleton - Singleton class for mod_perl VERSION
version 0.15 SYNOPSIS
package Printer; # default: # Request for mod_perl env # Process for non-mod_perl env use base qw(Apache::Singleton); package Printer::PerRequest; use base qw(Apache::Singleton::Request); package Printer::PerProcess; use base qw(Apache::Singleton::Process); DESCRIPTION
Apache::Singleton works the same as Class::Singleton, but with various object lifetime (scope). See Class::Singleton first. OBJECT LIFETIME
By inheriting one of the following sublasses of Apache::Singleton, you can change the scope of your object. Request use base qw(Apache::Singleton::Request); One instance for one request. Apache::Singleton will remove instance on each request. Implemented using mod_perl "pnotes" API. In mod_perl environment (where $ENV{MOD_PERL} is defined), this is the default scope, so inheriting from Apache::Singleton would do the same effect. NOTE: You need "PerlOptions +GlobalRequest" in your apache configuration in order to use the Request lifetime method. Process use base qw(Apache::Singleton::Process); One instance for one httpd process. Implemented using package global. In non-mod_perl environment, this is the default scope, and you may notice this is the same beaviour with Class::Singleton ;) So you can use this module safely under non-mod_perl environment. CREDITS
Original idea by Matt Sergeant <matt@sergeant.org> and Perrin Harkins <perrin@elem.com>. Initial implementation and versions 0.01 to 0.07 by Tatsuhiko Miyagawa <miyagawa@bulknews.net>. SEE ALSO
Apache::Singleton::Request, Apache::Singleton::Process, Class::Singleton SOURCE
The development version is on github at http://github.com/mschout/apache-singleton <http://github.com/mschout/apache-singleton> and may be cloned from git://github.com/mschout/apache-singleton.git <git://github.com/mschout/apache-singleton.git> BUGS
Please report any bugs or feature requests to bug-apache-singleton@rt.cpan.org or through the web interface at: http://rt.cpan.org/Public/Dist/Display.html?Name=Apache-Singleton AUTHOR
Michael Schout <mschout@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2009 by Michael Schout. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-04-02 Apache::Singleton(3pm)
All times are GMT -4. The time now is 12:01 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy