You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Tom Tu <To...@bamco.com> on 2003/11/12 22:22:49 UTC

[users@httpd] Apache Upgrade

Hi, 

What I have:

Redhat Linux 8 /w the default apache 2.0.40 installed.  I then removed, the
apache using rpm -e and all dependencies associated with it.  I ran ps -ef
|grep httpd and also perform a httpd -v and no apache version is currently
running.

What I want:

I downloaded the latest rpm version of apache 2.0.47 and when trying to
install it using rpm -ivh apache*, I get five dependency errors.  They are
listed below:

Libapr-0.so.0
Libaprutil-0.so.0
Libcrypto.so.4
Libdb-4.1.so
Libssl.so.4

I am a newbie to all this, but just want to know if this is common practice
and I should just download those rpm packages.  However, when I do download
the above rpm dependencies it seems to have other dependencies.  

Is there an easier way of doing this or it is just this complicated?

Any help would be appreciated.
Thanks,
Tom

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Apache Upgrade

Posted by Luis Gallegos <lg...@todo1.com>.
What I want:
> 
> I downloaded the latest rpm version of apache 2.0.47 and when trying to
> install it using rpm -ivh apache*, I get five dependency errors....

You better install the new apache using the tar.gz source. Download it
from http://httpd.apache.org.
Read the  README file that comes inside the tar.gz file (if there is an
INSTALL file, read it too ). It has instructions of how to install it.
In short, to install it you have to:
tar -zxvf apachexxx.tar.gz
cd apachexxx
./configure --PREFIX=/usr/local/apache
make
make install


It will install apache in the /usr/local/apache directory.
To test that apache is working execute:
/usr/local/apache/bin/httpd -v
	
 
On Wed, 2003-11-12 at 16:22, Tom Tu wrote:
> Hi, /usr/local/apache
> 
> What I have:
> 
> Redhat Linux 8 /w the default apache 2.0.40 installed.  I then removed, the
> apache using rpm -e and all dependencies associated with it.  I ran ps -ef
> |grep httpd and also perform a httpd -v and no apache version is currently
> running.
> 
> What I want:
> 
> I downloaded the latest rpm version of apache 2.0.47 and when trying to
> install it using rpm -ivh apache*, I get five dependency errors.  They are
> listed below:
> 
> Libapr-0.so.0
> Libaprutil-0.so.0
> Libcrypto.so.4
> Libdb-4.1.so
> Libssl.so.4
> 
> I am a newbie to all this, but just want to know if this is common practice
> and I should just download those rpm packages.  However, when I do download
> the above rpm dependencies it seems to have other dependencies.  
> 
> Is there an easier way of doing this or it is just this complicated?
> 
> Any help would be appreciated.
> Thanks,
> Tom
> 
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
> 


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Need quick help in compiling 2.0.48

Posted by Luis Gallegos <lg...@todo1.com>.
You better check the ServerLimit directive.
	Luis

On Wed, 2003-11-12 at 16:37, Admin-Stress wrote:
> I want to compile the latest apache 2.0.48, and I need to be able to use MaxClient 512.
> I heard that I should change something in the source code for this.
> 
> Anyone can point me the correct way ?
> 
> I read in the apache installation doc, but cant find it.
> 
> Thanks.
> 
> __________________________________
> Do you Yahoo!?
> Protect your identity with Yahoo! Mail AddressGuard
> http://antispam.yahoo.com/whatsnewfree
> 
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
> 


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] mod_deflate does not work ...

Posted by Admin-Stress <me...@yahoo.com>.
I compiled apache 2.0.48, and I compiled mod_deflate as static module --enable-deflate

In the httpd.conf, I added lines like this :

# mod_deflate configuration
SetOutputFilter DEFLATE
AddOutputFilterByType DEFLATE text/html text/plain

DeflateFilterNote ratio
LogFormat '"%r" %b (%{ratio}n) "%{User-agent}i"' deflate
CustomLog /var/log/httpd/deflate_log deflate
# end mod_deflate

But why I did not see any log output in /var/log/httpd/deflate_log ??? 

I just want to compress html and text.

I cleared the web browser cache, and then refreshed the website. But I cant see the deflate in
action. The size of deflate_log is 0.

Bug?

__________________________________
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] mod_expires problem ...

Posted by Joshua Slive <jo...@slive.ca>.
On Wed, 12 Nov 2003, Admin-Stress wrote:

> I used mod_expires like this in httpd.conf :
>
> ExpiresActive On
>
> ExpiresByType image/gif "access plus 1 month"
> ExpiresByType image/jpeg "access plus 1 month"
>
> So, it is very clear, I just set the expiration only for .gif and .jpeg.
>
> But why I got this error in the log file :
>
> [Thu Nov 13 00:46:59 2003] [error] [client 10.0.0.88] internal error: bad expires code:
> /home/www/example.com/html/index.html

See:
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24459

No solution, but a work-around is suggested.

Joshua.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] mod_expires problem ...

Posted by Admin-Stress <me...@yahoo.com>.
I used mod_expires like this in httpd.conf :

ExpiresActive On

ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"

So, it is very clear, I just set the expiration only for .gif and .jpeg.

But why I got this error in the log file :

[Thu Nov 13 00:46:59 2003] [error] [client 10.0.0.88] internal error: bad expires code:
/home/www/example.com/html/index.html
[Thu Nov 13 00:46:59 2003] [error] [client 10.0.0.88] internal error: bad expires code:
/home/www/example.com/html/showcase/dummy.swf
[Thu Nov 13 00:46:59 2003] [error] [client 10.0.0.88] internal error: bad expires code:
/home/www/example.com/html/showcase/intro.swf

This problem happen after I used source version of apache 2.0.48. I compiled mod_expires as static
module.

This was not happen in 2.0.40 rpm version.

Anyone know why?
and how to fix it ?


__________________________________
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] Need quick help in compiling 2.0.48

Posted by Admin-Stress <me...@yahoo.com>.
I want to compile the latest apache 2.0.48, and I need to be able to use MaxClient 512.
I heard that I should change something in the source code for this.

Anyone can point me the correct way ?

I read in the apache installation doc, but cant find it.

Thanks.

__________________________________
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org