Re: [EMAIL PROTECTED] NameVirtualHost Directive

2007-12-17 Thread florian . schmidt
Maybe I missed the core of your question because it was so early in the
morning for me :-)

To extend my example:

NameVirtualHost IP1:80

  ServerName domain1.com
  DocumentRoot /var/www/domain1/
  



  ServerName domain2.com
  DocumentRoot /var/www/domain2/
  


NameVirtualHost IP2:80

  ServerName domain3.com
  DocumentRoot /var/www/domain3/
  


Now the apache decides which website to serve only via the domain name that is
given with the request.
Literally speaking, if you read an NameVirtualHost statement like "I want a
virtual host on that IP and on that port to exist", then a VirtualHost
statement would mean "here is a configuration for ONE domain running under
that virtualhost". That's why they have to have the same name and why a
virtualhost needs a ServerName.

I hope that was a little bit more precise.

bye
Florian

On Mon, December 17, 2007 06:17, Bryan Richardson wrote:
> Hi Florian,
>
> Thanks for the response.  I guess my question is why have the
> NameVirtualHost directive since the *same* IP address is required to be
> specified as an attribute in the VirtualHost block?
>
> Thanks! -- BTR
>
> On Dec 16, 2007 10:09 PM, <[EMAIL PROTECTED]> wrote:
>
>> Hi Bryan,
>>
>> one example would be a machine with two IP adresses, each of them has its
>> own
>> www.domain
>>
>> example:
>>
>> NameVirtualHost IP1:80
>> 
>>  
>> 
>>
>> NameVirtualHost IP2:80
>> 
>>  
>> 
>>
>> but there are even more situations where NameVirtualHost could used. Maybe
>> with different websites on different ports, etc.
>>
>> bye
>> Florian
>>
>>
>> On Mon, December 17, 2007 04:44, Bryan Richardson wrote:
>> > Hello all,
>> >
>> > I'm curious as to why one would ever need to use the NameVirtualHost
>> > directive in site configuration files.  I just can't seem to get my head
>> > around why it's *sometimes* required.  I say sometimes only because I've
>> > seen instances where it isn't used at all.  If all VirtualHost arguments
>> > *must* match the IP address given with the NameVirtualHost directive,
>> then
>> > what's the point?
>> >
>> > I learn best by example... can anyone give me an example of when it is
>> > needed?
>> >
>> > Thanks! -- BTR
>> >
>>
>>
>>
>> -
>> 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]
>>   "   from the digest: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
>



-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Why access_log so large?

2007-12-17 Thread goommy
hi,list!

My server use 1.3 and work well all the time.
Recently,i upate 1.3 to 2.2 with the configuration almost same as 1.3! And 
2.2 is working well for several days!
But when i compare the access_log between 1.3 and 2.2 , i find 2.2's 
access_log so large then 1.3's.
[1.3 access_log]
[EMAIL PROTECTED] 09]# cat www_access_log | wc -l
39069
[EMAIL PROTECTED] 09]# awk -F '[ ?]+' '{a[$7]++}END{for(i in a)printf "%s 
%d\n",i,a[i]}' www_access_log | sort -k2nr | head -5
/ 7043
/rest/track/track.js 1840
/lbi-image/homepage/gif9901.gif 1791
/lbi-image/homepage/gif01.gif 1700
/rest/text.htm 1610
[2.2 access_log]
[EMAIL PROTECTED] 14]# cat www_access_log | wc -l
169729
[EMAIL PROTECTED] 14]# awk -F '[ ?]+' '{a[$7]++}END{for(i in a)printf "%s 
%d\n",i,a[i]}' www_access_log | sort -k2nr | head -5
/ 75393
/newjs/hexunjs.js 42849
/newcss/hexun2008.css 7912
/chinabank.js 7585
/favicon.ico 6117

I have two squid in front of apache to cache ,and use squid control cache 
time!!





Re: [EMAIL PROTECTED] Help w/ Rewrite

2007-12-17 Thread Vincent Bray
On 16/12/2007, Bryan Richardson <[EMAIL PROTECTED]> wrote:
> Thanks. I took a look at the Wiki links you provided, and I think I'll
> try using Redirect instead. Any hints as to how I would use Redirect
> in this situation?

Redirect is a simpler solution but will only work in the main server
config. If you're able to do that then you should just drop htaccess
in general. The idea is that because there  are always two vhosts (one
ssl, one not) then you just put Redirect in one of them.

> Another question: is the RewriteEngine directive site-wide or per
> directory? Also, if I say RewriteEngine On in a directory that I also
> say AllowOverride All, do I have to say RewriteEngine On again in the
> .htaccess file?

I don't know. Sorry!

-- 
noodl

-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Problems to load default pages in subdirectoires

2007-12-17 Thread jocke khazad
Hi Everyone,

I have an odd problem with my apache server.

Server version: Apache/2.0.46

My default page in www.exmaple.com is index.jsp and it loads fine if you
enter http://www.example.com.

here is the problem,

When I enter http://www.example.com/jsp/admin it doesn't work.

I get the follow message:

Not Found

The requested URL /jsp/admin/ was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an
ErrorDocument to handle the request.
--
Apache/2.0.46 (Red Hat) Server at marie.ne.se Port 80


But I know it exists. If I type:
http://www.example.com/jsp/admin/index.jspit page loads fine.

In httpd.conf the directory index setting looks like this:

DirectoryIndex index.jsp index.html categories.jsp index.htm index.shtml

and as I said, index.jsp loads fine in the documentroot. But it doesn't in
subits in the documentroot.

Any ideas? I cant find anything on the net on this one. And it doesn't make
any sense.


Best regards

Jocke


Re: [EMAIL PROTECTED] Problems to load default pages in subdirectoires

2007-12-17 Thread Krist van Besien
On Dec 17, 2007 12:21 PM, jocke khazad <[EMAIL PROTECTED]> wrote:
> Hi Everyone,
>
> I have an odd problem with my apache server.
>
> Server version: Apache/2.0.46
>
> My default page in www.exmaple.com is index.jsp and it loads fine if you
> enter http://www.example.com.
>
> here is the problem,
>
> When I enter http://www.example.com/jsp/admin it doesn't work.

What happens when you try to load

http://www.example.com/jsp/admin/ (With / at the end!)

Krist

-- 
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Bremgarten b. Bern, Switzerland
--
A: It reverses the normal flow of conversation.
Q: What's wrong with top-posting?
A: Top-posting.
Q: What's the biggest scourge on plain text email discussions?

-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] Problems to load default pages in subdirectoires

2007-12-17 Thread jocke khazad
Same resault with

http://www.example.com/jsp/admin

and

http://www.example.com/jsp/admin/

On Dec 17, 2007 12:41 PM, Krist van Besien <[EMAIL PROTECTED]>
wrote:

> On Dec 17, 2007 12:21 PM, jocke khazad <[EMAIL PROTECTED]> wrote:
> > Hi Everyone,
> >
> > I have an odd problem with my apache server.
> >
> > Server version: Apache/2.0.46
> >
> > My default page in www.exmaple.com is index.jsp and it loads fine if you
> > enter http://www.example.com.
> >
> > here is the problem,
> >
> > When I enter http://www.example.com/jsp/admin it doesn't work.
>
> What happens when you try to load
>
> http://www.example.com/jsp/admin/ (With / at the end!)
>
> Krist
>
> --
> [EMAIL PROTECTED]
> [EMAIL PROTECTED]
> Bremgarten b. Bern, Switzerland
> --
> A: It reverses the normal flow of conversation.
> Q: What's wrong with top-posting?
> A: Top-posting.
> Q: What's the biggest scourge on plain text email discussions?
>
> -
> 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]
>   "   from the digest: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Re: [EMAIL PROTECTED] Question about Apache SSL and Rewrites

2007-12-17 Thread Joshua Slive
On Dec 16, 2007 10:48 PM, Bryan Richardson <[EMAIL PROTECTED]> wrote:
> Once again, Joshua, thanks for your help.  What are your feelings on
> Rewrites vs. Redirects?  How would I use a Redirect (or RedirectMatch) in
> this situation?  I tried doing a RedirectMatch with a similar regexp to what
> I used with RewriteMatch, but it wouldn't work.

RedirectMatch has a strict subset of the capabilities of Rewrite. You
could probably use either for your problem, but if you have one
working, there is no need to change.

Joshua.

-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] NameVirtualHost Directive

2007-12-17 Thread Joshua Slive
On Dec 17, 2007 12:17 AM, Bryan Richardson <[EMAIL PROTECTED]> wrote:
> Hi Florian,
>
> Thanks for the response.  I guess my question is why have the
> NameVirtualHost directive since the *same* IP address is required to be
> specified as an attribute in the VirtualHost block?

It makes request processing more efficient for IP-based virtual hosts
if you need to specify explicitly when a host is name-based.

This way, for IP-based virtual hosts (ie, for any IP address that has
not been specified in a NameVirtualHost directive), apache doesn't
need to bother matching against the ServerName inside each
 block, it can simply use the first block that matches
the IP address/port.

Joshua.

-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] Problems to load default pages in subdirectoires

2007-12-17 Thread Krist van Besien
On Dec 17, 2007 12:52 PM, jocke khazad <[EMAIL PROTECTED]> wrote:
> Same resault with
>
>
> http://www.example.com/jsp/admin
>
> and
>
> http://www.example.com/jsp/admin/
>

Check your config. There might be a DirectoryIndex somewhere else in
your httpd.conf, or in a .htaccess file that overrides the main one. A
rewrite rule might also be interfering.


Krist


-- 
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Bremgarten b. Bern, Switzerland
--
A: It reverses the normal flow of conversation.
Q: What's wrong with top-posting?
A: Top-posting.
Q: What's the biggest scourge on plain text email discussions?

-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] Problems to load default pages in subdirectoires

2007-12-17 Thread Joshua Slive
On Dec 17, 2007 9:06 AM, Krist van Besien <[EMAIL PROTECTED]> wrote:
> On Dec 17, 2007 12:52 PM, jocke khazad <[EMAIL PROTECTED]> wrote:
> > Same resault with
> >
> >
> > http://www.example.com/jsp/admin
> >
> > and
> >
> > http://www.example.com/jsp/admin/
> >
>
> Check your config. There might be a DirectoryIndex somewhere else in
> your httpd.conf, or in a .htaccess file that overrides the main one. A
> rewrite rule might also be interfering.

Also, check your error_log to see exactly what apache is doing.

Joshua.

-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] authorization with more than one method

2007-12-17 Thread robert rottermann
hi there,
I have a site where I would like to use more than one authentication
method. how can can I do that?
I have how something like:


AuthType Basic
AuthName "By Invitation Only"
AuthUserFile /srv/www/htdocs/passwd/passwords
AuthGroupFile /srv/www/htdocs/passwd/groups
require group DieGruppe


I would like to add something like


AuthType NTLM
AuthName "By Invitation Only"
xxx
yyy
require valid_user


so that a user can login either with basic authentication OR using NTLM

how can I do that.
can somebody point me to an example.

thanks
robert



begin:vcard
fn:Robert  Rottermann
n:Rottermann;Robert
tel;work:++41 31 333 10 20
tel;fax:++41 31 333 10 23
tel;home:++41 31 333 36 03
x-mozilla-html:FALSE
version:2.1
end:vcard


-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

[EMAIL PROTECTED] Mark Tomlinson/IL/HCSC is out of the office.

2007-12-17 Thread tomlinsonm

I will be out of the office starting  12/16/2007 and will not return until
01/02/2008.

Please contact Mark Malott for things that require immediate attention.



**

The information contained in this communication is confidential, private, 
proprietary, or otherwise privileged and is intended only for the use of the 
addressee.  Unauthorized use, disclosure, distribution or copying is strictly 
prohibited and may be unlawful.  If you have received this communication in 
error, please notify the sender immediately at (312)653-6000 in Illinois; 
(800)835-8699 in New Mexico; (918)560-3500 in Oklahoma; or (972)766-6900 in 
Texas.

**


-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [EMAIL PROTECTED] NameVirtualHost Directive

2007-12-17 Thread Axel-Stephane SMORGRAV
NameVirtualHost is used only if you want to host several web sites using the 
same IP/port combination as opposed to IP-based virtual hosting where exactly 
one site (server name) is hosted on each IP/port combination.

If you use Name-based virtual hosting, you may provide several VirtualHost 
sections for the IP/port combination declared as NameVirtualHost. In that case 
Apache will compare the Host-header of the request with the ServerName of the 
name-based virtual hosts. If one matches, the request will be processed in the 
context of that virtual host. If none match, the context of the first virtual 
host declared for that IP/port will be used.

You can very well mix name-based and IP-based virtual hosting in the same 
Apache server.

See http://httpd.apache.org/docs/2.2/vhosts/name-based.html.

-ascs


De : Bryan Richardson [mailto:[EMAIL PROTECTED] 
Envoyé : lundi 17 décembre 2007 04:44
À : users@httpd.apache.org
Objet : [EMAIL PROTECTED] NameVirtualHost Directive


Hello all,

I'm curious as to why one would ever need to use the NameVirtualHost directive 
in site configuration files.  I just can't seem to get my head around why it's 
*sometimes* required.  I say sometimes only because I've seen instances where 
it isn't used at all.  If all VirtualHost arguments *must* match the IP address 
given with the NameVirtualHost directive, then what's the point? 

I learn best by example... can anyone give me an example of when it is needed?

Thanks! -- BTR


-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] How to rid a pest?

2007-12-17 Thread Dragon

Charles Michener wrote:
I have a couple of spider bots hitting my server that I do not wish 
to have access to my pages - they ignore robots.txt, so I finally 
put them on my 'deny from x' list. This does deny them access 
but they persist to keep trying - trying each page address at least 
30 times - several hits per second .  Is there a standard method to 
forward them to some black hole or the FBI or ...?

 End original message. -

This is the kind of thing a router/firewall will handle for you.

Stopping these requests before they get to your machine is the best 
way to handle them. Otherwise, it doesn't really have a lot of impact 
on the performance of the server for it to send a forbidden response 
back to the offenders. Yeah, it takes a little bit of processing but 
it is pretty insignificant per request.


Hopefully they will eventually give up but if they don't, look into 
using a firewall to deny at the edge of your network.


Dragon

~~~
 Venimus, Saltavimus, Bibimus (et naribus canium capti sumus)
~~~


-
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]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] restricting a subdirectory in virtual host

2007-12-17 Thread Tonu Mikk
I would like to make a document root folder of a virtual host open to 
public, but restrict access to root/admin folder to certain IP ranges 
only.  Below is what I have currently.  I have restricted the 
survey/admin folder, but everyone can still view pages.  Any suggestions 
on what I am doing wrong?  Thank you,


DocumentRoot /var/www/survey
   
   Options FollowSymLinks
   AllowOverride None
   
   
   Options FollowSymLinks MultiViews
   AllowOverride None
   Order allow,deny
   allow from all
   
   
   Options FollowSymLinks MultiViews
   AllowOverride None
   Order deny,allow
   Deny from all
   Allow from localhost
   

-
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]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Newbie question

2007-12-17 Thread EWD

I have a website that is running at http://www.ewd.com. I have also installed
another web application that is also accessible from
http://www.edw.com:8080.

I want to configure apache so users can use the second application at
app.ewd.com instead of www.edw.com:8080. How can I achieve this?

Thanks in advance
Edsger
-- 
View this message in context: 
http://www.nabble.com/Newbie-question-tp14373933p14373933.html
Sent from the Apache HTTP Server - Users mailing list archive at Nabble.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: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] restricting a subdirectory in virtual host

2007-12-17 Thread Joshua Slive
On Dec 17, 2007 12:05 PM, Tonu Mikk <[EMAIL PROTECTED]> wrote:
> I would like to make a document root folder of a virtual host open to
> public, but restrict access to root/admin folder to certain IP ranges
> only.  Below is what I have currently.  I have restricted the
> survey/admin folder, but everyone can still view pages.  Any suggestions
> on what I am doing wrong?  Thank you,
>
> DocumentRoot /var/www/survey
> 
> Options FollowSymLinks
> AllowOverride None
> 
> 
> Options FollowSymLinks MultiViews
> AllowOverride None
> Order allow,deny
> allow from all
> 
> 
> Options FollowSymLinks MultiViews
> AllowOverride None
> Order deny,allow
> Deny from all
> Allow from localhost
> 

The configuration is basically correct, so the problem is likely
either you aren't editing the correct config file, you are reloading
the configuration after editing, of you have an Allow directive
someplace else in the config (perhaps in a  section)
overriding this config. (AllowOverride restricts only .htaccess files,
not other sections of httpd.conf and related.

Joshua.

-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] Newbie question

2007-12-17 Thread Steve Reilly
EWD wrote:
> I have a website that is running at http://www.ewd.com. I have also installed
> another web application that is also accessible from
> http://www.edw.com:8080.
>
> I want to configure apache so users can use the second application at
> app.ewd.com instead of www.edw.com:8080. How can I achieve this?
>
> Thanks in advance
> Edsger
>   
put a link on the first webpage for the second one, make sure you use
the :8080 after the link.  OR just DNS redirect to the second one.  
and, be sure you have a virtual host setup for the :8080, and port
forwarding setup on your router to forward all requests for :8080 to
that site.  may not be the right way but it works for me.

steve

-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] restricting a subdirectory in virtual host

2007-12-17 Thread Tonu Mikk

Joshua Slive wrote:

The configuration is basically correct, so the problem is likely
either you aren't editing the correct config file, you are reloading
the configuration after editing, of you have an Allow directive
someplace else in the config (perhaps in a  section)
overriding this config. (AllowOverride restricts only .htaccess files,
not other sections of httpd.conf and related.
  
Thanks Joshua for looking at the directives.  I must have not saved the 
file or not re-started Apache.  It is working as expected now.


Tonu

-
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]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Newbie question

2007-12-17 Thread chris
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

EWD wrote:
> I have a website that is running at http://www.ewd.com. I have also installed
> another web application that is also accessible from
> http://www.edw.com:8080.
> 
> I want to configure apache so users can use the second application at
> app.ewd.com instead of www.edw.com:8080. How can I achieve this?
> 
> Thanks in advance
> Edsger


I would do this with mod_proxy in a reverse proxy configuration.

A good guide to do this can be found here: 
http://www.apachetutor.org/admin/reverseproxies

What you need may be as simple as what I have below. There are details in the 
link above that may prove useful if this
does not work for you.

Enable mod_proxy, and mod_proxy_http and then add this to your apache 
configuration:


ServerNameapp.ewd.com
ProxyPreserveHost On
ProxyPass/   http://www.edw.com:8080/



chris
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD4DBQFHZsS5tqidmIdniVgRAsSpAJdmyM8HdicnYfs8Q2O3ju6oOgfDAJ9x7RGU
2VjVDKFpnKAYONc/SPfLFg==
=wrGm
-END PGP SIGNATURE-

-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] apache freezes the virtual machine.

2007-12-17 Thread Asrai khn
Hi we are running our shared web server under vm (UML) distro FC7 its
working fine but once in 10-15 days apache shoots  virtual machine load very
hight upto 20-30 and all swap been consumed. if some how we get into the vm
via ssh stop/start apache normalize the vm which clearly show that is apache
that freezing and shooting the load on vm.

Mem: 512M
swap: 1024M

here what i find in logs

Dec 17 12:50:51  kernel: httpd invoked oom-killer: gfp_mask=0x200d2,
order=0, oomkilladj=0
Dec 17 12:50:51  kernel: 1330fd68:  [<08053cfc>] dump_stack+0x1c/0x20
Dec 17 12:50:51  kernel: 1330fd80:  [<0808a4f8>] out_of_memory+0x6b/0xd3
Dec 17 12:50:51  kernel: 1330fda8:  [<0808b356>]
__alloc_pages+0x1ed/0x26c
Dec 17 12:50:51  kernel: 1330fde8:  [<080974b3>]
read_swap_cache_async+0x33/0x80
Dec 17 12:50:51  kernel: 1330fdfc:  [<080917e8>]
swapin_readahead+0x3c/0x5f
Dec 17 12:50:51  kernel: 1330fe20:  [<08091868>] do_swap_page+0x5d/0x1d4
Dec 17 12:50:51  kernel: 1330fe4c:  [<08091fbb>]
__handle_mm_fault+0x10a/0x17e
Dec 17 12:50:51  kernel: 1330fe80:  [<08054926>]
handle_page_fault+0xe2/0x1bc
Dec 17 12:50:51  kernel: 1330feb4:  [<08054b5e>] segv+0xa2/0x240
Dec 17 12:50:51  kernel: 1330ff68:  [<08063ae7>] handle_segv+0x32/0x3a
Dec 17 12:50:51  kernel: 1330ff94:  [<08063f8f>] userspace+0x117/0x166
Dec 17 12:50:51  kernel: 1330ffdc:  [<08055371>] fork_handler+0x74/0x7c
Dec 17 12:50:51  kernel: 1330fffc:  [] 0xa55a5a5a
Dec 17 12:50:51  kernel:
Dec 17 12:50:51  kernel: Mem-info:
Dec 17 12:50:51  kernel: Normal per-cpu:
Dec 17 12:51:23  kernel: CPU0: Hot: hi:  186, btch:  31 usd:  34
Cold: hi:   62, btch:  15 usd:  60
Dec 17 12:51:28  kernel: Active:73753 inactive:50187 dirty:0 writeback:4
unstable:0
Dec 17 12:51:29  kernel:  free:702 slab:2098 mapped:670 pagetables:960
bounce:0
Dec 17 12:51:30  kernel: Normal free:2808kB min:2884kB low:3604kB
high:4324kB active:295012kB inactive:200748kB present:520192kB
pages_scanned:829898 a
ll_unreclaimable? yes

Any idea how to make this vm stable?

Askar.


Re: [EMAIL PROTECTED] apache freezes the virtual machine.

2007-12-17 Thread Joshua Slive
On Dec 17, 2007 2:24 PM, Asrai khn <[EMAIL PROTECTED]> wrote:
> Hi we are running our shared web server under vm (UML) distro FC7 its
> working fine but once in 10-15 days apache shoots  virtual machine load very
> hight upto 20-30 and all swap been consumed. if some how we get into the vm
> via ssh stop/start apache normalize the vm which clearly show that is apache
> that freezing and shooting the load on vm.

>
> Any idea how to make this vm stable?

The only thing we know here is that for some reason apache is sucking
up tons of memory under a specific circumstance. This is likely due to
a bug in one of your programs that is running under apache (a php
script, for example), but could also be due to a bug in apache httpd
intself or in some third-party module you are running.

One useful tool to figure out what request is triggering the problem
is mod_log_forensic. But without more debugging, there is nothing we
can suggest.

Joshua.

-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] apache freezes the virtual machine.

2007-12-17 Thread Asrai khn
On Dec 18, 2007 12:33 AM, Joshua Slive <[EMAIL PROTECTED]> wrote:

>
> The only thing we know here is that for some reason apache is sucking
> up tons of memory under a specific circumstance. This is likely due to
> a bug in one of your programs that is running under apache (a php
> script, for example), but could also be due to a bug in apache httpd
> intself or in some third-party module you are running.
>
> One useful tool to figure out what request is triggering the problem
> is mod_log_forensic. But without more debugging, there is nothing we
> can suggest.
>
>
Hi Joshua

Thanks for the reply ok will try to grab more data so that we can figure out
the problem. Would you please tell me do i have to add "ForensicLog
logs/forensic_log" to all  v.host s configs under /etc/httpd/conf.d ?


Thanks. Askar


Re: [EMAIL PROTECTED] apache freezes the virtual machine.

2007-12-17 Thread Joshua Slive
On Dec 17, 2007 3:34 PM, Asrai khn <[EMAIL PROTECTED]> wrote:
>
>
>
> On Dec 18, 2007 12:33 AM, Joshua Slive <[EMAIL PROTECTED]> wrote:
> >
> >
> > The only thing we know here is that for some reason apache is sucking
> > up tons of memory under a specific circumstance. This is likely due to
> > a bug in one of your programs that is running under apache (a php
> > script, for example), but could also be due to a bug in apache httpd
> > intself or in some third-party module you are running.
> >
> > One useful tool to figure out what request is triggering the problem
> > is mod_log_forensic. But without more debugging, there is nothing we
> > can suggest.
> >
> >
>
> Hi Joshua
>
> Thanks for the reply ok will try to grab more data so that we can figure out
> the problem. Would you please tell me do i have to add "ForensicLog
> logs/forensic_log" to all  v.host s configs under /etc/httpd/conf.d ?

No, if you put it outside of any  it should log for all
virtual hosts.

Joshua.

-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Custom hostname and Apache 2.2.6

2007-12-17 Thread Hans Tovetjärn

Hello!

I'm a bit new to this, but here goes. My computer is a MacBook Pro  
with Mac OS X 10.4.11, I am not using the bundled Apach 1.3 server,  
it has not been activated prior to this. I installed Apache 2.2.6 (as  
well as PHP and MySQL...) through MacPorts (DarwinPorts) and it has  
been working flawlessly. It is when I attempt the following I can't  
make it work.


I have a fancy prompt in Terminal, which displays  
"[EMAIL PROTECTED]>", however, I would like the hostname to be the  
computer name, i.e. I want it to look like "[EMAIL PROTECTED]>", because  
the current hostname is "host-xx-xxx-xx-xxx" which can clutter up the  
screen a bit too much for me. Now this I solved by typing...


> sudo hostname laptop

...but after that, I can't seem to start Apache. If I change it back  
to "host-xx-xxx-xx-xxx", all is well. But I want the short name, so I  
try again. The error message I get is as follows:


httpd: apr_sockaddr_info_get() failed for laptop
	httpd: Could not reliably determine the server's fully qualified  
domain name, using 127.0.0.1 for ServerName


This is supposedly merely a warning according to http:// 
wiki.apache.org/httpd/CouldNotDetermineServerName but if I open my  
browser and go to 127.0.0.1 it can't find the server. Nor can I see  
it listed if I do a


> ps aux | grep httpd

So it would seem it never started at all. I then tried setting my  
hostname in httpd.conf to the following and restarting Apache 2,  
without success:


laptop
127.0.0.1
host-xx-xxx-xx-xxx (my old hostname)
127.0.0.1:80
host-xx-xxx-xx-xxx:80
host-xx-xxx-xx-xxx.serva.net (ISP)

None of them worked, I tried changing the listen directive as well to  
my IP, but that wouldn't help me either. Is it possible to use a  
custom hostname and have Apache run simultaneously?


Thanks in advance.

Regards,

Hans




[EMAIL PROTECTED] libtool: install: error: cannot install `libaprutil-1.la' to a directory not ending in /usr/local/apache2/lib

2007-12-17 Thread Flank
hey,there

i''m install apache to the specified path of /usr/local.and config it with
following command
shell>./configure --prefix=/usr/app/apache2/  --with-apr=/usr/app/apache2/
--enable-so --with-apr-util=/usr/app/apache2/ --with-included-apr
--libdir=/usr/app/apache2/lib/
shell>make
shell>make install

a error occured:

libtool: install: error: cannot install `libaprutil-1.la' to a directory not
ending in /usr/local/apache2/lib
make[2]: *** [install] Error 1
make[2]: Leaving directory `/home/apache/app/httpd-2.2.6/srclib/apr-util'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/home/apache/app/httpd-2.2.6/srclib'
make: *** [install-recursive] Error 1

would u pls help me this?


[EMAIL PROTECTED] Vhost issues

2007-12-17 Thread Chris Arnold
Using apache 2.2.3 and at this time, we only have 2 vhosts. When trying to go 
to www.teknerds.net people get the other vhost (which is MUWP). Following id 
the vhost file:
#
NameVirtualHost *:80


ServerAdmin [EMAIL PROTECTED]
ServerName mytimewithgod.net
#ServerAlias mytimewithgod.net *.mytimewithgod.net

# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
DocumentRoot /srv/www/htdocs/sites/MTwG

# if not specified, the global error log is used
ErrorLog /var/log/apache2/MTwG-error_log
CustomLog /var/log/apache2/MTwG-access_log combined

# don't loose time with IP address lookups
HostnameLookups Off

# needed for named virtual hosts
UseCanonicalName Off

# configures the footer on server-generated documents
ServerSignature On


# Optionally, include *.conf files from /etc/apache2/conf.d/
#
# For example, to allow execution of PHP scripts:
#
# Include /etc/apache2/conf.d/mod_php4.conf
#
# or, to include all configuration snippets added by packages:
# Include /etc/apache2/conf.d/*.conf


# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the 
client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /mailman/ "/usr/lib/mailman/cgi-bin/"

# "/srv/www/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have one, and where ScriptAlias points to.
#

AllowOverride None
Options +ExecCGI -Includes
Order allow,deny
Allow from all



# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received.
#
# To disable it, simply remove userdir from the list of modules in 
APACHE_MODULES
# in /etc/sysconfig/apache2.
#

# Note that the name of the user directory ("public_html") cannot 
simply be
# changed here, since it is a compile time setting. The apache package
# would have to be rebuilt. You could work around by deleting
# /usr/sbin/suexec, but then all scripts from the directories would be
# executed with the UID of the webserver.
UserDir public_html
# The actual configuration of the directory is in
# /etc/apache2/mod_userdir.conf.
Include /etc/apache2/mod_userdir.conf
# You can, however, change the ~ if you find it awkward, by mapping e.g.
# http://www.example.com/users/karl-heinz/ --> 
/home/karl-heinz/public_html/
#AliasMatch ^/users/([a-zA-Z0-9-_.]*)/?(.*) /home/$1/public_html/$2



#
# This should be changed to whatever you set DocumentRoot to.
#

#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all






ServerAdmin [EMAIL PROTECTED]
ServerName teknerds.net
DocumentRoot /srv/www/htdocs/sites/teknerds

# if not specified, the global error log is used
ErrorLog /var/log/apache2/teknerds.net-error_log
CustomLog /var/log/apache2/teknerds.net-access_log combined

# don't loose time with IP address lookups
HostnameLookups Off

# needed for named virtual hosts
UseCanonicalName Off

# configures the footer on server-generated documents
ServerSignature On


#
# This should be changed to whatever you set DocumentRoot to.
#

#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all





What do i have wrong? Thanks for any help.

Chris

-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Please give me some directions.

2007-12-17 Thread auser
hi,list!
I have a puzzle with between apache2.2 and squid. I have three apache
server with same configuration and only with apache service.And to squid 
server in front of apache server to cache my websites.
I use apche control cache time.And i set 15days with types of *.js.When I
check http reponse , i find all time set is right!
HTTP/1.1 200 OK
Date: Tue, 18 Dec 2007 03:32:09 GMT
Server: Apache/2.2.6 (Unix)
Last-Modified: Wed, 14 Nov 2007 08:34:31 GMT
ETag: "178505d-16a2-43edf6f31b3c0"
Accept-Ranges: bytes
Cache-Control: max-age=1296000
Expires: Wed, 02 Jan 2008 03:32:09 GMT
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 1556
Content-Type: application/javascript
X-Zip-Status: request=gzip:this; respond=vary
Age: 649
But when i check access_log, i found too many request from squid server with
*.js types ,and the request so high frequency.
10.0.121.12 - - [18/Dec/2007:11:40:07 +0800] "GET /chinabank.js HTTP/1.1" 200 
841
10.0.121.3 - - [18/Dec/2007:11:40:07 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
200 1556
10.0.251.206 - - [18/Dec/2007:11:40:07 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.251.206 - - [18/Dec/2007:11:40:08 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.251.206 - - [18/Dec/2007:11:40:09 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.251.206 - - [18/Dec/2007:11:40:09 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.251.206 - - [18/Dec/2007:11:40:10 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.251.206 - - [18/Dec/2007:11:40:10 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.121.3 - - [18/Dec/2007:11:40:11 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.251.206 - - [18/Dec/2007:11:40:11 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.251.206 - - [18/Dec/2007:11:40:12 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.251.206 - - [18/Dec/2007:11:40:12 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.251.206 - - [18/Dec/2007:11:40:14 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.251.206 - - [18/Dec/2007:11:40:15 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.251.206 - - [18/Dec/2007:11:40:16 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.250.217 - - [18/Dec/2007:11:40:16 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.121.12 - - [18/Dec/2007:11:40:17 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.251.206 - - [18/Dec/2007:11:40:17 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
200 5794
10.0.251.206 - - [18/Dec/2007:11:40:18 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 -
10.0.251.206 - - [18/Dec/2007:11:40:19 +0800] "GET /newjs/hexunjs.js HTTP/1.1" 
304 - 

I relly don't how to deal with,Thank you for your help!





RE: [EMAIL PROTECTED] Custom hostname and Apache 2.2.6

2007-12-17 Thread Axel-Stephane SMORGRAV
Here's a shot in the dark.
 
The file /etc/hosts most probably has a line containing host-xx-xxx-xx-xxx, 
associating the host name with an IP address, looking somewhat like this:

10.11.12.14 host-xx-xxx-xx-xxx

Edit that line and add laptop:

10.11.12.14 host-xx-xxx-xx-xxx laptop


I think that should do the trick. In order to permanently change the hostname, 
I believe you would need to modify the file /etc/hostname and/or /etc/nodename. 
You would need root privileges for that.
 

-ascs



De : Hans Tovetjärn [mailto:[EMAIL PROTECTED] 
Envoyé : mardi 18 décembre 2007 00:43
À : users@httpd.apache.org
Objet : [EMAIL PROTECTED] Custom hostname and Apache 2.2.6


Hello! 

I'm a bit new to this, but here goes. My computer is a MacBook Pro with Mac OS 
X 10.4.11, I am not using the bundled Apach 1.3 server, it has not been 
activated prior to this. I installed Apache 2.2.6 (as well as PHP and MySQL...) 
through MacPorts (DarwinPorts) and it has been working flawlessly. It is when I 
attempt the following I can't make it work.

I have a fancy prompt in Terminal, which displays "[EMAIL PROTECTED]>", 
however, I would like the hostname to be the computer name, i.e. I want it to 
look like "[EMAIL PROTECTED]>", because the current hostname is 
"host-xx-xxx-xx-xxx" which can clutter up the screen a bit too much for me. Now 
this I solved by typing...

> sudo hostname laptop

...but after that, I can't seem to start Apache. If I change it back to 
"host-xx-xxx-xx-xxx", all is well. But I want the short name, so I try again. 
The error message I get is as follows:

httpd: apr_sockaddr_info_get() failed for laptop 
httpd: Could not reliably determine the server's fully qualified domain name, 
using 127.0.0.1 for ServerName

This is supposedly merely a warning according to 
http://wiki.apache.org/httpd/CouldNotDetermineServerName but if I open my 
browser and go to 127.0.0.1 it can't find the server. Nor can I see it listed 
if I do a

> ps aux | grep httpd


So it would seem it never started at all. I then tried setting my hostname in 
httpd.conf to the following and restarting Apache 2, without success:

laptop

127.0.0.1

host-xx-xxx-xx-xxx (my old hostname)

127.0.0.1:80

host-xx-xxx-xx-xxx:80
host-xx-xxx-xx-xxx.serva.net (ISP)

None of them worked, I tried changing the listen directive as well to my IP, 
but that wouldn't help me either. Is it possible to use a custom hostname and 
have Apache run simultaneously?

Thanks in advance.

Regards,

Hans



-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] Custom hostname and Apache 2.2.6

2007-12-17 Thread Karel Kubat

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Hans,

On Dec 18, 2007, at 12:43 AM, Hans Tovetjärn wrote:

I'm a bit new to this, but here goes. My computer is a MacBook Pro  
with Mac OS X 10.4.11, I am not using the bundled Apach 1.3 server,  
it has not been activated prior to this. I installed Apache 2.2.6  
(as well as PHP and MySQL...) through MacPorts (DarwinPorts) and it  
has been working flawlessly. It is when I attempt the following I  
can't make it work.


I have a fancy prompt in Terminal, which displays  
"[EMAIL PROTECTED]>", however, I would like the hostname to be the  
computer name, i.e. I want it to look like "[EMAIL PROTECTED]>", because  
the current hostname is "host-xx-xxx-xx-xxx" which can clutter up  
the screen a bit too much for me. Now this I solved by typing...


> sudo hostname laptop

...but after that, I can't seem to start Apache. If I change it  
back to "host-xx-xxx-xx-xxx", all is well. [...]


On my Tiger system, start System Preferences -> Sharing (which is in  
the tab Internet & Network) and set your hostname there. The bare  
Unix 'hostname' command isn't the only place where MacOSX keeps the  
name of the system. The Preferences pane updates all.


Hope this helps,
   --
   Karel Kubat / M +31 6 2956 4861 (+31 6 AWK 6 HUM 1)
   From the duffynitions collection:
   Catifornia: The sunshine State for cats.

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (Darwin)

iD8DBQFHZ3yE23FrzRzybNURAtfOAJ9JCbvcSfvf8BXXbIj7Fpyd1tsaPwCePg7v
lwZkzrTfKKYZnCYQXM/+lyw=
=iE8t
-END PGP SIGNATURE-

-
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]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [EMAIL PROTECTED] Vhost issues

2007-12-17 Thread Axel-Stephane SMORGRAV
You can fix that by adding "ServerAlias www.teknerds.net" to the second VHost.

BTW, next time you post a configuration, please remove all the comments that 
make it unreadable unless they are relevant for your problem...

-ascs
 
-Message d'origine-
De : Chris Arnold [mailto:[EMAIL PROTECTED] 
Envoyé : mardi 18 décembre 2007 04:42
À : users
Objet : [EMAIL PROTECTED] Vhost issues

Using apache 2.2.3 and at this time, we only have 2 vhosts. When trying to go 
to www.teknerds.net people get the other vhost (which is MUWP). Following id 
the vhost file:
#
NameVirtualHost *:80


ServerAdmin [EMAIL PROTECTED]
ServerName mytimewithgod.net
#ServerAlias mytimewithgod.net *.mytimewithgod.net

DocumentRoot /srv/www/htdocs/sites/MTwG
ErrorLog /var/log/apache2/MTwG-error_log
CustomLog /var/log/apache2/MTwG-access_log combined
HostnameLookups Off
UseCanonicalName Off
ServerSignature On

ScriptAlias /mailman/ "/usr/lib/mailman/cgi-bin/"


AllowOverride None
Options +ExecCGI -Includes
Order allow,deny
Allow from all



UserDir public_html



Order allow,deny
Allow from all





ServerAdmin [EMAIL PROTECTED]
ServerName teknerds.net
DocumentRoot /srv/www/htdocs/sites/teknerds

ErrorLog /var/log/apache2/teknerds.net-error_log
CustomLog /var/log/apache2/teknerds.net-access_log combined

HostnameLookups Off
UseCanonicalName Off
ServerSignature On


Order allow,deny
Allow from all





What do i have wrong? Thanks for any help.

Chris

-
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]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]