Sponsored Content
Full Discussion: Apache does not start
Top Forums UNIX for Advanced & Expert Users Apache does not start Post 302590764 by Clovis_Sangrail on Tuesday 17th of January 2012 12:19:28 PM
Old 01-17-2012
From [PenLUG] re: twiki and .htaccess :

"This means that this .htaccess file must be inside a directory
that is allowed to have Overrides of type "AuthConfig" .
That means that the httpd.conf (or something included by it)
must have an AllowOverride with either "All" or "AuthConfig" ,
and this directive must be within a Directory container for a directory
tree that covers your ...file."

I'm not very much up on my Apache Directive Syntax, but maybe you are and this will point you in a productive direction. Good luck.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Apache wont start

Hi, like a lot of people that post here, I am new at UNIX. The only UNIX I have ever messed with is my iBook running MacOSX (10.1). I have a grasp of the basic commands and understanding of the system but only to a point. I searched the archive and FreeBSD.org and apache.org but I couldn't find... (4 Replies)
Discussion started by: Alpha_Harblo
4 Replies

2. UNIX for Dummies Questions & Answers

Apache start (Was in:how can i?) [Split by LF]

I need to know, which script starts the apache web server on start up? If anyone could help me that would be great. I'm in deep trouble if I can't find the script. thanks very much dan donohd If you know my e-mail is donohd@sage.edu thanks:( (1 Reply)
Discussion started by: donohd
1 Replies

3. AIX

Start Stop Apache

I am in the process of reorging my Lawson db. I need to turn off the RMI server...not a problem. However my instructions also state that I must also shutdown my Servlet Container....I believe it is Apache. I have looked in /usr/apache/bin/apachectl What is the command for stopping and... (2 Replies)
Discussion started by: MILLERJ62
2 Replies

4. Solaris

Apache start problem

Hi, I have installed apache webserver on my solaris 10(x86). When I tried to start the server it gives following error, ld.so.1: /usr/local/apache2/bin/httpd: fatal: libssl.so.0.9.8: open failed: No such file or directory Killedld.so.1:: Too many arguments Can somebody please guide me how... (1 Reply)
Discussion started by: maheshsri
1 Replies

5. Solaris

help me........... my apache can't start

help me please.................bro i was install apache2 and i have been configure httpd.conf on my solaris 10 machine n i already running my httd service but why my webserver couldn't run on my browser? some buddy help me.............:confused::confused::confused::confused::confused: (5 Replies)
Discussion started by: yatmianto
5 Replies

6. Solaris

Apache start issue

Hi group, I need help to start apache in following scenario: 1) Say apache is installed on solaris OS by user 'root'. 2) An entry is there in httpd.conf that says to start apache process as user: #User <RUN_AS_USER> is edited as User user1 2) Now say user2 has logged and tries to start... (6 Replies)
Discussion started by: rs266
6 Replies

7. Solaris

apache cannot start

hi all i'm having a problem with apache on solaris 10 SPARC I'm trying to start httpd as root but it fails with the following error /usr/local/apache2/bin/httpd -k start httpd: Could not determine the server's fully qualified domain name, using 192.168.1.11 for ServerName (20014)Error... (16 Replies)
Discussion started by: h@foorsa.biz
16 Replies

8. Red Hat

Apache start error

I have a new server, installed everything and tried to get it all up and running. Got the following issue: # /usr/local/apache/bin/apachectl start httpd: Syntax error on line 54 of /usr/local/apache/conf/httpd.conf: Cannot load /usr/local/apache/modules/libphp5.so into server:... (0 Replies)
Discussion started by: Tommyk
0 Replies

9. Web Development

Unable to start the apache web server

Hi All, I'm getting this below error bash-4.1$ ./apachectl -k start (98)Address already in use: make_sock: could not bind to address hostname:18000 no listening sockets available, shutting down Unable to open logs I tried to change the port number, still same error: ... (5 Replies)
Discussion started by: raghur77
5 Replies

10. Shell Programming and Scripting

Display status of instances in apache - Where to start

Hello, I know this is not a simple question so I just need to know where to start for below project: I am running under Ubuntu 18.04 What I'd like to see in apache page is to display status of particular process pids. ps aux | grep keywords.txt keywords.txt word1 word2 word3 word4... (9 Replies)
Discussion started by: baris35
9 Replies
apache_mod_perl-108~358::mod_perl-2.0.7::docs::api::ApacUser:Contributed Papache_mod_perl-108~358::mod_perl-2.0.7::docs::api::Apache2::CmdParms(3)

NAME
Apache2::CmdParms - Perl API for Apache command parameters object Synopsis use Apache2::CmdParms (); use Apache2::Module (); use Apache2::Const -compile => qw(NOT_IN_LOCATION); my @directives = ( { name => 'MyDirective', cmd_data => 'some extra data', }, ); Apache2::Module::add(__PACKAGE__, @directives); sub MyDirective { my ($self, $parms, $args) = @_; # push config $parms->add_config(['ServerTokens off']); # this command's command object $cmd = $parms->cmd; # check the current command's context $error = $parms->check_cmd_context(Apache2::Const::NOT_IN_LOCATION); # this command's context $context = $parms->context; # this command's directive object $directive = $parms->directive; # the extra information passed thru cmd_data to # Apache2::Module::add() $info = $parms->info; # which methods are <Limit>ed ? $is_limited = $parms->method_is_limited('GET'); # which allow-override bits are set $override = $parms->override; # which Options are allowed by AllowOverride (since Apache 2.2) $override = $parms->override_opts; # the path this command is being invoked in $path = $parms->path; # this command's pool $p = $parms->pool; # this command's configuration time pool $p = $parms->temp_pool; } Description "Apache2::CmdParms" provides the Perl API for Apache command parameters object. API
"Apache2::CmdParms" provides the following functions and/or methods: "add_config" Dynamically add Apache configuration at request processing runtime: $parms->add_config($lines); obj: $parms ( "Apache2::CmdParms object" ) arg1: $lines (ARRAY ref) An ARRAY reference containing configuration lines per element, without the new line terminators. ret: no return value since: 2.0.00 See also: "$s->add_config", "$r->add_config" "check_cmd_context" Check the current command against a context bitmask of forbidden contexts. $error = $parms->check_cmd_context($check); obj: $parms ( "Apache2::CmdParms object" ) arg1: $check ( "Apache2::Const :context constant" ) the context to check against. ret: $error ( string / undef ) If the context is forbidden, this method returns a textual description of why it was forbidden. If the context is permitted, this method returns "undef". since: 2.0.00 For example here is how to check whether a command is allowed in the "<Location>" container: use Apache2::Const -compile qw(NOT_IN_LOCATION); if (my $error = $parms->check_cmd_context(Apache2::Const::NOT_IN_LOCATION)) { die "directive ... not allowed in <Location> context" } "cmd" This module's command information $cmd = $parms->cmd(); obj: $parms ( "Apache2::CmdParms object" ) ret: $cmd ( "Apache2::Command object" ) since: 2.0.00 "directive" This command's directive object in the configuration tree $directive = $parms->directive; obj: $parms ( "Apache2::CmdParms object" ) ret: $directive ( "Apache2::Directive object" ) The current directive node in the configuration tree since: 2.0.00 "info" The extra information passed through "cmd_data" in "Apache2::Module::add()". $info = $parms->info; obj: $parms ( "Apache2::CmdParms object" ) ret: $info ( string ) The string passed in "cmd_data" since: 2.0.00 For example here is how to pass arbitrary information to a directive subroutine: my @directives = ( { name => 'MyDirective1', func => &MyDirective, cmd_data => 'One', }, { name => 'MyDirective2', func => &MyDirective, cmd_data => 'Two', }, ); Apache2::Module::add(__PACKAGE__, @directives); sub MyDirective { my ($self, $parms, $args) = @_; my $info = $parms->info; } In this example $info will either be 'One' or 'Two' depending on whether the directive was called as MyDirective1 or MyDirective2. "method_is_limited" Discover if a method is <Limit>ed in the current scope $is_limited = $parms->method_is_limited($method); obj: $parms ( "Apache2::CmdParms object" ) arg1: $method (string) The name of the method to check for ret: $is_limited ( boolean ) since: 2.0.00 For example, to check if the "GET" method is being "<Limit>"ed in the current scope, do: if ($parms->method_is_limited('GET') { die "..."; } "override" Which allow-override bits are set ("AllowOverride" directive) $override = $parms->override; obj: $parms ( "Apache2::CmdParms object" ) ret: $override ( bitmask ) the allow-override bits bitmask, which can be tested against "Apache2::Const :override constants". since: 2.0.00 For example to check that the "AllowOverride"'s "AuthConfig" and "FileInfo" options are enabled for this command, do: use Apache2::Const -compile qw(:override); $wanted = Apache2::Const::OR_AUTHCFG | Apache2::Const::OR_FILEINFO; $masked = $parms->override & $wanted; unless ($wanted == $masked) { die "..."; } "override_opts" Which options are allowed to be overridden by ".htaccess" files. This is set by "AllowOverride Options=...". $override_opts = $parms->override_opts; Enabling single options was introduced with Apache 2.2. For Apache 2.0 this function simply returns a bitmask with all options allowed. obj: $parms ( "Apache2::CmdParms object" ) ret: $override_opts ( bitmask ) the bitmask, which can be tested against "Apache2::Const :options constants". since: 2.0.3 "path" The current pathname/location/match of the block this command is in $path = $parms->path; obj: $parms ( "Apache2::CmdParms object" ) ret: $path ( string / "undef" ) If configuring for a block like <Location>, <LocationMatch>, <Directory>, etc., the pathname part of that directive. Otherwise, "undef" is returned. since: 2.0.00 For example for a container block: <Location /foo> ... </Location> '/foo' will be returned. "pool" Pool associated with this command $p = $parms->pool; obj: $parms ( "Apache2::CmdParms object" ) ret: $p ( "APR::Pool object" ) since: 2.0.00 "server" The (vhost) server this command was defined in httpd.conf $s = $parms->server; obj: $parms ( "Apache2::CmdParms object" ) ret: $s ( "Apache2::Server object" ) since: 2.0.00 "temp_pool" Pool for scratch memory; persists during configuration, but destroyed before the first request is served. $temp_pool = $parms->temp_pool; obj: $parms ( "Apache2::CmdParms object" ) ret: $temp_pool ( "APR::Pool object" ) since: 2.0.00 Most likely you shouldn't use this pool object, unless you know what you are doing. Use "$parms->pool" instead. Unsupported API "Apache2::CmdParms" also provides auto-generated Perl interface for a few other methods which aren't tested at the moment and therefore their API is a subject to change. These methods will be finalized later as a need arises. If you want to rely on any of the following methods please contact the the mod_perl development mailing list so we can help each other take the steps necessary to shift the method to an officially supported API. "context" Get context containing pointers to modules' per-dir config structures. $context = $parms->context; obj: $parms ( "Apache2::CmdParms object" ) ret: $newval ( "Apache2::ConfVector object" ) Returns the commands' per-dir config structures since: 2.0.00 See Also mod_perl 2.0 documentation. Copyright mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0. Authors The mod_perl development team and numerous contributors. perl v5.16.2 2011-0apache_mod_perl-108~358::mod_perl-2.0.7::docs::api::Apache2::CmdParms(3)
All times are GMT -4. The time now is 10:16 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy