Re: [users@httpd] Step-by-Step Tutorial: How to Deploy cPanel Web Hosting Control Panel version 11.74 on CentOS 7.5 Linux Server version 1805 in Amazon AWS Cloud

2023-08-03 Thread Ken Coar
Fascinatingly detailed.. but did I miss what prompted its delivery to this list? 🤔 -- Ken Coar (📱) Software developer, author, opinionist Sanagendamgagwedweinini

[users@httpd] Why am I getting Openssl library mismatch with mod_ldap??

2019-05-06 Thread ken edward
Hello, I successfully built a FIPS openssl based mod_ssl for Apache 2.4.39. Everything works great via SSL when I boot Apache, EXCEPT when I then turn on mod_ldap/mod_authnz_ldap, THEN I get the below openssl library version mismatch. The SSL will still work, but it display the below warning. Lo

[users@httpd] Receive openssl library version mismatch when enabling mod_ldap ??!!

2019-05-03 Thread ken edward
Hello, I successfully built a FIPS openssl based mod_ssl for Apache 2.4.39. Everything works great via SSL when I boot Apache, EXCEPT when I then turn on mod_ldap/mod_authnz_ldap, THEN I get the below openssl library version mismatch. The SSL will still work, but it display the below warning. I t

[users@httpd] 2.4.33 secure web crashes

2018-05-04 Thread Ken Partridge
Hello, We have been running/upgrading the Apache web for years on a custom ARM device with great success. When we upgraded from 2.4.29 to 2.4.33 we now have trouble with crashes. If we query the web server with multiple sessions via http, no problems, if we do the same thing with https, after a m

Re: [users@httpd] Rewrite REMOTE_USER environment variable

2017-05-29 Thread Ken Mycock
Thanks Rainer I have no option but to fix the scripts, as I can't change the Apache installation on a shared server. The fix to each cgi script is easy, but the volume of scripts makes it a significant task. Best I get on with it then! Ken On 24/05/2017 15:41, Rainer Canavan wrote: O

Re: [users@httpd] Rewrite REMOTE_USER environment variable

2017-05-23 Thread Ken Mycock
Eric It seems to make sense that REMOTE_USER wasn't set when the rule I tried in htaccess ran, as that would explain RU not being set. But, REMOTE_USER must be set by Apache, even if it is late in the sequence, so where/how can I get at it? Ken On 23/05/2017 18:43, Eric Covener

Re: [users@httpd] Rewrite REMOTE_USER environment variable

2017-05-23 Thread Ken Mycock
either, so it's perhaps more fundamental than not being allowed to rewrite REMOTE_USER. Ken On 23/05/2017 14:20, Rainer Canavan wrote: On Tue, May 23, 2017 at 2:10 PM, Ken Mycock wrote: [...] Hence, we need to allow authentication of either form of number but to strip leading zeros from

[users@httpd] Rewrite REMOTE_USER environment variable

2017-05-23 Thread Ken Mycock
efore Apache 2.4, but now needs a work-around. What work-around should I use? As we're on a shared server, the solution has to be implemented in htaccess, not httpd.conf. Ken - To unsubscribe, e-mail: user

Re: [users@httpd] am i hacked ?

2017-02-06 Thread Ken Robinson
that's not expected. Ken - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] mod_proxy_fdpass.so file missing

2016-08-12 Thread Ken Bell
uot;Installed (but unpackaged) file(s) found" regarding "/usr/lib64/httpd/modules/mod_proxy_hcheck.so". I then added that file to the list of modules, recreated the "httpd-2.4.23.tar.bz" file and apparently successfully built the RPMs. Ken On Thu, 14 Jul 2016 03:15:27 G

Re: [users@httpd] Mod_Status : Empty Client / Protocol / Vhost / Request Columns

2016-04-13 Thread Ken
e if any. > > Sent from my iPhone > > On Apr 13, 2016, at 12:53 PM, Ken wrote: > > I recently upgraded to Apache 2.4.20 on FreeBSD and up until this update, > everything has been working great with mod_status. > > However since the upgrade, unless an action is taking place (

[users@httpd] Mod_Status : Empty Client / Protocol / Vhost / Request Columns

2016-04-13 Thread Ken
- and that's it. Here is a screenshot : http://i67.tinypic.com/21kgncl.png I really hope that this is a bug and not "now working as intended". Ken

Re: [users@httpd] virtual host configuration

2015-07-23 Thread ken
On 07/23/2015 03:48 PM, Mathijs Schmittmann wrote: K R schreef op 7/23/2015 om 9:44 PM: Hi, my customer want to configure virtual host for 5 website in one apache environment . do i have to get 5 ip addresses from network team. Can someone please point me on how can i achieve the same No, yo

Re: [users@httpd] Followup to [Bug 50028] (LDAP authentication with encrypted passwords)

2013-03-28 Thread Ken Nishimura
ng for username/password cannot be encrypted separately from the http connection. Thanks, Ken On 03/28/2013 04:11 PM, Eric Covener wrote: On Thu, Mar 28, 2013 at 5:33 PM, Ken Nishimura wrote: Basically, using the mod_auth_ldap module, apart from using SSL (and associated overhead), is it still the

[users@httpd] Followup to [Bug 50028] (LDAP authentication with encrypted passwords)

2013-03-28 Thread Ken Nishimura
re is no way to encrypt just the passing of username and password from the client (browser) back to the server? As others have pointed out, SSL is a fallback, but with associated overhead. Has this been fixed in later versions of Apache?

Re: [users@httpd] trouble cross compiling for e500v2

2012-11-16 Thread Ken Kelly-Turner
Hi Igor, I'm new to cross-compilation and linkiners. How do I check disable linker maps (using ld) Thanks, Ken On Fri, Nov 16, 2012 at 2:06 PM, Igor Galić wrote: > > > - Original Message - >> Hi all, >> >> I'm trying to run apache on a powerpc bo

[users@httpd] trouble cross compiling for e500v2

2012-11-16 Thread Ken Kelly-Turner
ith glibc but I've run other cross compiled applications and they've run without issue. If anyone has any idea of the potential cause/solution I would really appreciate it as Google has failed to provide any helpful results Thanks, Ken

[users@httpd] Potential Bug in mpm_common.c

2012-06-14 Thread Ken Cheung
I observed a code clone in the following files. In the function ap_mpm_set_max_mem_free the variable "value" has to be multiplied by 1024 before exit while ap_mpm_set_thread_stacksize does not perform this operation. I wonder if this is necessary. Hope it helps. function : ap_mpm_set_max_mem_fr

[users@httpd] Potential Bug in mod_file_cache.c

2012-06-13 Thread Ken Cheung
I observed a code clone in the following files. The second and third functions type cast the object after allocation using "apr_palloc" while the first function does not. I wonder if this is necessary in the function "create_server_config". Hope it helps. function : create_server_config @ (file

[users@httpd]

2011-02-05 Thread Mick Ken
http://sudhiraitawadearth01.blogspot.com - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscr...@httpd.apach

Re: [us...@httpd] Can't get suexec to work on a userdir

2010-11-30 Thread Ken Tanzer
I _think_ that PHP is running as a module (based on this section of my php conf file: LoadModule php5_module modules/libphp5.so LoadModule php5_module modules/libphp5-zts.so But not sure of the implications. Do the PHP scripts need to run as CGI in order for suexec to work? Ken On Tue

[us...@httpd] Can't get suexec to work on a userdir

2010-11-29 Thread Ken Tanzer
sn't seem to be failing the security checks. So either CGI execution is not enabled for users (how does one enable that?), or else it's something else completely I'm missing. I'll be glad to feel dumb in someone can tell

[us...@httpd] Please add timestamps to Apache Service Monitor

2010-11-05 Thread Ken Winter
p me, as a developer, keep track of where I'm at in my debug cycle. ~ Thanks ~ Ken

Re: [us...@httpd] Unsubscribe

2009-04-16 Thread Ken Zhao
**Hi Durga! Thank you and please send an email to users-unsubscr...@httpd.apache.org Btw, Are u really work at Cisco? :) On 4/17/09, Durga Prasad (duprasad) wrote: > > Please Unsubscribe me. > > Thanks, > Durga > -- Ken Zhao (SL: Ken March) http://zhaoke.com

[us...@httpd] Reload configuration file without restart in windows

2009-03-22 Thread ken
hi, I'm using Apache 2.2 in Windows2003 Server. After i change the configuration file. it takes a very long time during Apache restart . Is there any way to reload configuration file without restart Apache? Any help will be appreciate. -

RE: [us...@httpd] Problems with redirects...

2009-02-16 Thread Ken Morley
Bob: Thanks for the excellent advice. That resolved the issue. I was mistakenly thinking that the RewriteCond did all of the matching. I forgot about matching within the RewriteRule itself. Thanks again! Ken Morley -Original Message- From: Bob Ionescu [mailto:bobsie

[us...@httpd] Problems with redirects...

2009-02-16 Thread Ken Morley
;;. So it redirects endlessly. Why is regexp "^www\.saddlebrook\.com$" matching http://www.saddlebrook.com/pda"; and how can I make this work correctly? Thanks for any suggestions! Ken - The official User

[EMAIL PROTECTED] Can we use include directive inside location directive ???

2008-08-08 Thread Mick Ken
Hi Friends, I have lot's of location tags like these: DAV svn SVNPath C:/Projects1/ AuthName "Projects1" AuthType SSPI SSPIAuth On SSPIAuthoritative On SSPIDomain mydomain SSPIOfferBasic On SSPIUsernameCase lower Require valid-user AuthzSVNAccessFile "C:/svn/svn-a

Re: [EMAIL PROTECTED] Re: Unable to view files under sub-folders

2007-10-30 Thread Mick Ken
:) On 10/30/07, Dragon <[EMAIL PROTECTED]> wrote: > Mick Ken wrote: > >Hi Friends, > >I got it figured. It has the "SVN" path URL pointed to an empty directory. > > > >I feel ashamed. This is the second day in a row where i posted a > >thread and 5 mi

[EMAIL PROTECTED] Re: Unable to view files under sub-folders

2007-10-30 Thread Mick Ken
Hi Friends, I got it figured. It has the "SVN" path URL pointed to an empty directory. I feel ashamed. This is the second day in a row where i posted a thread and 5 minutes later i figured out the solution and had to ask for forgiveness. Cheers On 10/30/07, Mick Ken <[EMAIL PROT

[EMAIL PROTECTED] Unable to view files under sub-folders

2007-10-30 Thread Mick Ken
Hi Friends, I have setup Subversion with Apache and everything works fine except that when I view the directory in a web-browser,I see the folder under root, but when I click any of the sub-folders,it does not displays the content and is empty. If I connect to the repository using some subversion

Re: [EMAIL PROTECTED] How to grant access to a directory

2007-10-29 Thread Mick Ken
AIL PROTECTED]> wrote: > On 10/29/07, Mick Ken <[EMAIL PROTECTED]> wrote: > > Hi Friends, > > I have a subversion running with svnserve but I would like to > > configure Apache for it,so that I could use domain user > > authentication. > > > > I trie

Re: [EMAIL PROTECTED] Php not running

2007-10-29 Thread Ken Robinson
fix it. How are you invoking your script, i.e. what are you typing in the browsers address box? It needs to be http://localhost/path/to/your/script.php Ken - The official User-To-User support forum of the Apache HTTP Server Projec

[EMAIL PROTECTED] Re: How to grant access to a directory [CLOSED]

2007-10-29 Thread Mick Ken
Sorry for the trouble guys, Got it resolved. Actually I was using the subversion url directly instead of using the alias url ie Project1 defined in the tutorial in the subversion.conf file. I tried that and it worked.Forgive me for my ignorance. Thanks --

[EMAIL PROTECTED] How to grant access to a directory

2007-10-29 Thread Mick Ken
Hi Friends, I have a subversion running with svnserve but I would like to configure Apache for it,so that I could use domain user authentication. I tried to follow this tutorial: http://svn.spears.at/ But the apache serve is not allowing me the access to the directory.It gives me this error:

Re: [EMAIL PROTECTED] Unable to run the xampp

2007-09-04 Thread Ken Robinson
Xampp works fine with Windows XP. Windows 98 is almost 10 years old (maybe older) -- time to get a more modern OS if you want to run xampp. ISTR that I was able to run a very early version of xampp on Windows 98, but it's been so long that I really

Re: [EMAIL PROTECTED] AccessLog isn't logging

2007-08-24 Thread Ken Zhao
Did u erase the access_log file for specific virtual host or root access_log file? could u post ur screenshot or textinfo on ur VirtualHost directive? On 8/25/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hello. > > I don't know why my access_log file is always 0 bytes > size. I've searched

Re: [EMAIL PROTECTED] Redirect of http to https going into an infinite loop

2007-06-18 Thread Ken Robinson
On 6/18/07, Brett Neumeier <[EMAIL PROTECTED]> wrote: On Mon, 2007-06-18 at 17:16 +0100, Tony Stevenson wrote: > On Mon, June 18, 2007 4:49 pm, Ken Robinson wrote: > > I'm trying to help my boss solve his rewrite problem. He's trying the > > following code in the c

[EMAIL PROTECTED] Redirect of http to https going into an infinite loop

2007-06-18 Thread Ken Robinson
ewriteCond %{SERVER_PORT} !^443$ RewriteRule ^/(.*)$ https://virtual1/$1 [L,R] Is there any way of making this work without specifying a different target host? Thanks in advance. Ken - The official User-To-User support forum of the A

RE: [EMAIL PROTECTED] What controls which directories httpd can serve from?

2007-04-09 Thread Ken Morley
>>On 4/9/07, Ken Morley <[EMAIL PROTECTED]> wrote: >> When I run the app, here's what I see in /var/log/httpd/error_log: >> >> [error] [client 192.168.168.41] (13)Permission denied: access to >> /samples/directory.php denied. >> >> If I move

[EMAIL PROTECTED] What controls which directories httpd can serve from?

2007-04-09 Thread Ken Morley
l, etc. So I don't think that it either. Is there something that limits what directories httpd will serve or where PHP applications can reside? Thanks! Ken - The official User-To-User support forum of the Apache HTTP Se

[EMAIL PROTECTED] Relative path with virtual host

2007-03-29 Thread Ken Loomis
myFiles with ../myFiles Why is this, and can safely I fix this with some directive in the Virtual Host? I have a number of libraries I'd like to share across several applications. Any help is much appreciated, Ken

Re: [EMAIL PROTECTED] Can't get mod_rewrite to do anything

2006-08-02 Thread Ken Schutte
vhost, or add RewriteEngine On and RewriteOptions Inherit to that vhost. That was it - I put it in the default vhost file and it's working now. Thanks! Ken - The official User-To-User support forum of the Apache HTTP Serv

[EMAIL PROTECTED] Can't get mod_rewrite to do anything

2006-08-01 Thread Ken Schutte
t, but the rule doesn't work. I've tried a bunch of other rules too, and I can't get any simple RewriteRules to do anything. It created the rewrite_log log file, but it is empty, so I do not even know where to look to track down the problem. Any

Re: [EMAIL PROTECTED] apache 2.2 and php 5 problem

2006-05-01 Thread Ken Murach
, you wrote: On Monday 01 May 2006 19:21, Ken Murach wrote: > > AddType application/x-httpd-php .php .phtml > AddType application/x-httpd-php-source .phps > Oh dear. That cargo-cult is deeply BAD for two reasons. That abuse of AddType was wrong in Apache 1.1, and ever

Re: [EMAIL PROTECTED] apache 2.2 and php 5 problem

2006-05-01 Thread Ken Murach
0200, you wrote: On Mon, May 01, 2006 at 02:00:08PM -0400, Ken Murach wrote: >BASEDIR: /usr/local Remember your ldd's output: libxml2.so.2 => /lib/libxml2.so.2 You see? Rainer - The official User-To-Use

Re: [EMAIL PROTECTED] apache 2.2 and php 5 problem

2006-05-01 Thread Ken Murach
, 2006 at 01:32:42PM -0400, Ken Murach wrote: > Hi Rainier, > > I would imagine it should be ok? I didn't have any problems with same php > 5.0.5 for the apache 1.3.34 installation. The ./httpd -t command works fine > for that version. > > Do you think I should I should g

Re: [EMAIL PROTECTED] apache 2.2 and php 5 problem

2006-05-01 Thread Ken Murach
+0200, you wrote: On Mon, May 01, 2006 at 01:02:15PM -0400, Ken Murach wrote: > libxml2.so.2 => /lib/libxml2.so.2 Is this lib recent enough for php5? Rainer - The official User-To-User support forum of the Apache

Re: [EMAIL PROTECTED] apache 2.2 and php 5 problem

2006-05-01 Thread Ken Murach
ire-V210/lib/libmd5_psr.so.1 Thanks Kenny At 06:52 PM 5/1/2006 +0200, you wrote: On Mon, May 01, 2006 at 12:34:29PM -0400, Ken Murach wrote: > itis-padlproxy1 # ./httpd -t > httpd: Syntax error on line 53 of /usr/local/apache2/conf/httpd.conf: > Cannot load /usr/local/apache2/modules/l

[EMAIL PROTECTED] apache 2.2 and php 5 problem

2006-05-01 Thread Ken Murach
Hi everyone, Does anyone know if there are issues between apache 2.2.0 and php 5.0.5 for Solaris unix?? I've recently installed apache 2.2.0 which was working fine. I then added the php 5.0.5 piece and now when I run the httpd -t command to verify syntax is still OK, I get the following the

Re: [EMAIL PROTECTED] Weblogic module and apache 1.3.33 question

2006-03-28 Thread Ken Murach
Thank you Alex for the info. I will check it out. Much appreciated Kenny At 07:56 PM 3/28/2006 +0200, you wrote: Hi, On Die 28.03.2006 12:47, Ken Murach wrote: I then started up this apache 1.3.33 instanace but got the following message upon start up: apollo1 # ./apachectl start [Tue Mar

[EMAIL PROTECTED] Weblogic module and apache 1.3.33 question

2006-03-28 Thread Ken Murach
Hi everyone, Recently I was asked to install apache 1.3.33 on a solaris unix server to replace existing apache 1.3.31. I configured the 1.3.33 to be the same as the 1.3.31 (same modules compiled in statically with the addition of a few new modules in 1.3.33). Now the 1.3.31 uses the mod_wl.s

[EMAIL PROTECTED] apache 2.0.54 rotatelogs compilation question

2006-03-24 Thread Ken Murach
Does anyone know if it's possible to configure apache 2.0.54 without having the rotatelogs function compiled in??? Thanks Kenny - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apa

[EMAIL PROTECTED] Apache 2.0.54 rotate logs problem

2006-03-24 Thread Ken Murach
Hi everyone, Was wondering if there is a work around solution to apache 2.0.54 and rotatelogs?? Currently having a problem trying to start up apache 2.0.54 with the rotatelogs function. This function does not retain the value of the LD_LIBRARY_PATH variable and when we try to start this apache

Re: [EMAIL PROTECTED] Apache server is not parsing php files

2006-01-26 Thread Ken Robinson
t;Save to disk" . I think you need to invoke it with a trailing slash: http://localhost/phpMyAdmin/ So Apache knows to look for index.php Ken - The official User-To-User support forum of the Apache HTTP Server Project. S

Re: [EMAIL PROTECTED] apache hacked to send spam!

2006-01-19 Thread Ken Robinson
/2.0.40 php-4.2.2-17.2 PHP 4.2.2 is rather old. I would suggest upgrading to at least 4.10 or 4.11 Ken - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> f

RE: [EMAIL PROTECTED] apache/php question

2006-01-04 Thread Ken Murach
Thank you Gary for the info. I will look into that. Much appreciated. Kenny At 08:31 AM 1/4/2006 -0800, you wrote: You can try running it on an alternate port side by side and do your testing that way, assuming that you active site uses relative URLs. > -Original Message- > Fro

[EMAIL PROTECTED] apache/php question

2006-01-04 Thread Ken Murach
Hi everyone, I'm relatively new at apache/php and I've just installed/built apache 1.3.33 with php-4.4.0 as static. The build was successful and I've run the following commands: itis-appdev # pwd /usr/local/apache_1.3.33_ssl/bin itis-appdev # ./httpd -t Syntax OK itis-appdev # ./httpd -l Co

RE: [EMAIL PROTECTED] Delete Blank Lines In A Text File

2005-12-27 Thread Ken Robinson
the fopen() of the output file. That's how you can write to the same filename, at least on OS's that don't do file versions. On OS's with file versions, like VMS, opening the same file name just creates a new version and

RE: [EMAIL PROTECTED] Delete Blank Lines In A Text File

2005-12-27 Thread Ken Robinson
ipt you would see that the output file doesn't have the blank lines. You can easily make the output file the same as the input file, so you end up with a cleaned file. I wrote & tested the script before I posted it. Ken

Re: [EMAIL PROTECTED] Delete Blank Lines In A Text File

2005-12-27 Thread Ken Robinson
user script' tries to read each line of the text file. Here's a short script: Ken - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more

Re: [EMAIL PROTECTED] apache 1.3.28 not starting up - no errors??

2005-12-16 Thread Ken Murach
start the command with "strace" or your local dialect's tool of choice. That way you will see the error killing your process. hope this helps, Christian On Tue, Dec 13, 2005 at 01:11:08PM -0500, Ken Murach wrote: > Hi everyone, > > I have a user who starts up apache 1.

[EMAIL PROTECTED] apache 1.3.28 not starting up - no errors??

2005-12-13 Thread Ken Murach
Hi everyone, I have a user who starts up apache 1.3.28 by running a script and giving the script the argument of start This was working, but now the user is unable to get this to start up anymore?? Even as root, I am unable to start this up and there are no errors being recorded in the error

Re: [EMAIL PROTECTED] Problem setting up mod_alias for an external folder

2005-12-12 Thread Ken Tozier
. How you do that depends on your setup. Very good. Thanks for you help/patience. Ken - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info.

Re: [EMAIL PROTECTED] Problem setting up mod_alias for an external folder

2005-12-12 Thread Ken Tozier
e an alias in the mod_alias section of the httpd.conf file? Ken - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e

Re: [EMAIL PROTECTED] Problem setting up mod_alias for an external folder

2005-12-11 Thread Ken Tozier
s directory permission redefinition business. Ken - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: [EMAIL PROTECTED] Problem setting up mod_alias for an external folder

2005-12-11 Thread Ken Tozier
On Dec 11, 2005, at 1:17 PM, Joshua Slive wrote: On 12/11/05, Ken Tozier <[EMAIL PROTECTED]> wrote: Then when I type 'localhost/images/' or '127.0.0.1/images/' into a Safari or Firefox address bar, I get: "Forbidden You don't have permission to acc

Re: [EMAIL PROTECTED] Problem setting up mod_alias for an external folder

2005-12-11 Thread Ken Tozier
On Dec 11, 2005, at 1:17 PM, Joshua Slive wrote: On 12/11/05, Ken Tozier <[EMAIL PROTECTED]> wrote: Then when I type 'localhost/images/' or '127.0.0.1/images/' into a Safari or Firefox address bar, I get: "Forbidden You don't have permission to access /im

[EMAIL PROTECTED] Problem setting up mod_alias for an external folder

2005-12-11 Thread Ken Tozier
somewhere that need to be changed to allow the above to work? Thanks for any help Ken - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more inf

[EMAIL PROTECTED] apache errors

2005-12-05 Thread Ken Murach
Hi everyone, I'm relatively new to apache and was wondering what do these errors mean?? [Thu Dec 01 16:45:12 2005] [warn] (128)Network is unreachable: connect to listener on [::]:80 [Thu Dec 01 16:45:12 2005] [notice] child pid 275 exit signal Segmentation fault (11), possible coredump in /usr

RE: [EMAIL PROTECTED] apache 1.3.33 multiple instances problem

2005-11-28 Thread Ken Murach
Thank you Axel for your help. I will look into what you said on both the pid possible problem and and running the truss command with the -f option for more information. Thanks again Kenny At 11:02 AM 11/24/2005 +0100, you wrote: > [EMAIL PROTECTED] logs]$ tail error.log [Tue Nov 22 11:27:59 20

Re: [EMAIL PROTECTED] apache 1.3.33 multiple instances problem

2005-11-22 Thread Ken Murach
then echo "HTTPD is not running, or pid file was shot dead." else /usr/bin/kill $pid fi ;; 'restart') $0 stop $0 start ;; *) echo "Usage: $0 { start | stop | restart }" exi

Re: [EMAIL PROTECTED] apache 1.3.33 multiple instances problem

2005-11-22 Thread Ken Murach
o why I can start up 1.3.33 as root and be able to start up multiple instances, but it won't start up for non-root user itisgrp?? Kenny At 11:22 AM 11/22/2005 -0500, you wrote: On 11/22/05, Ken Murach <[EMAIL PROTECTED]> wrote: > Hi everyone, > > My name is Ken Murach and I'

Re: [EMAIL PROTECTED] apache 1.3.33 multiple instances problem

2005-11-22 Thread Ken Murach
ow do I run it?? Thanks again Joshua for your time Kenny At 11:22 AM 11/22/2005 -0500, you wrote: On 11/22/05, Ken Murach <[EMAIL PROTECTED]> wrote: > Hi everyone, > > My name is Ken Murach and I'm relatively new to the apache world. I'm a > unix administrator and I w

[EMAIL PROTECTED] apache 1.3.33 multiple instances problem

2005-11-22 Thread Ken Murach
Hi everyone, My name is Ken Murach and I'm relatively new to the apache world. I'm a unix administrator and I was recently asked to install apache 1.3.33 on one of our servers. I was able to install/configure apache 1.3.33 successfully. However, the user itisgrp is unable to st