Tenon Intersystems Please see text links at bottom of page for navigation
Please see text links at bottom of page for navigation

Search tenon.com

Thanks to:

iTools

Re: Access Error

To: <itools@xxxxxxxxxxxxxxx>
Subject: Re: Access Error
From: Peter Hampus <spam@xxxxxxxxxxxxxxxxx>
Date: Wed, 31 Jul 2002 23:55:12 +0200
*This message was transferred with a trial version of CommuniGate(tm) Pro*
I have the same problem as the original poster, and what bothers me is that
my trial period expires in a few days and there seemt to be no way to fill
in the new serial number that I am about to purchase. (Or can I do that via
ssh?)

I used to be able to connect to the server using Timbuktu, but after
installing iTools the server (server version 10.1.4 and client version
10.1.5) no longer accepts incoming connections from outside our lan. The
server only responds to requests for 127.0.0.1.
I have used iTools to set up Bind and it seems to work ok, but some times
the server does not recognize its own ip-number. Starting server admin gives
me the following address to the server: 0.0.0.0, but after reboot the ip
number 192.168.1.2 is pre written in server admin.

The httpd.conf file contains these lines which seem wrong, aren't they?

 Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the <VirtualHost>
# directive.
# 
#Listen 3000
#Listen 12.34.56.78:80

Shouldn't the servers ip-number  be here instead of 12.34.56.78:80?


At the end of the file is this section:

TransferLog     tenon/logs/iTools.log
Listen 80  
#       Tenon iTools directives
Port    80
ServerName      127.0.0.1
<VirtualHost    127.0.0.1:80>
<Directory       /Library/WebServer/WebSites/127.0.0.1>
Options Indexes FollowSymLinks MultiViews IncludesNOEXEC
</Directory>
NameVirtualHost 127.0.0.1
ServerAlias     127.0.0.1 localhost localhost.tidningenchef.com 127.0.0.1
192.$
</VirtualHost>

I have tried to add a virtual host for 192.168.1.2 but that did not work so
I added 192.168.1.2 as an alias to 127.0.0.1 but that did not work either.


The error log shows this:
[chefserver:~] peter% tail -f /private/var/log/httpd/error_log
[Thu Jul 25 19:22:17 2002] [notice] caught SIGTERM, shutting down
[Thu Jul 25 19:22:22 2002] [warn] module mod_redirectacgi_apple.c is already
added, skipping
[Thu Jul 25 19:22:22 2002] [notice] Apache/1.3.26 (iTools/MacOSX)
mod_ssl/2.8.9 OpenSSL/0.9.6b mod_perl/1.26 mod_fastcgi/2.2.12 configured --
resuming normal operations
[Thu Jul 25 19:22:23 2002] [notice] Accept mutex: flock (Default: flock)
[Thu Jul 25 19:22:23 2002] [notice] FastCGI: process manager initialized
(pid 477)
[Thu Jul 25 19:25:55 2002] [notice] caught SIGTERM, shutting down
[Thu Jul 25 19:26:01 2002] [warn] module mod_redirectacgi_apple.c is already
added, skipping
[Thu Jul 25 19:26:01 2002] [notice] Apache/1.3.26 (iTools/MacOSX)
mod_ssl/2.8.9 OpenSSL/0.9.6b mod_perl/1.26 mod_fastcgi/2.2.12 configured --
resuming normal operations
[Thu Jul 25 19:26:01 2002] [notice] Accept mutex: flock (Default: flock)
[Thu Jul 25 19:26:01 2002] [notice] FastCGI: process manager initialized
(pid 537)


Additonal information:

I have had Webmin installed but have uninstalled it. I also reinstalled
iTools, but that did not help, so I made a complete uninstall using the
uninstall script and then reinstalled from scratch.

I'd really appreciate some explanations here. I am fraid that iTools Bind
configuration stops working when the serial number expires, and then my mail
server no longer works either.

Thanks in advance.

/Peter











On 7/28/02 2:48 PM, "Sam Smith" <samtools@xxxxxxxx> wrote:

> *This message was transferred with a trial version of CommuniGate(tm) Pro*
>> I have a VH configured.  I have seen this before and I needed to re-install
>> iTools to fix it.  The problem is that I am not at the system (I am at my
>> mother-in-law's infact) and I am trying to fix the system via ssh.
>> 
>> If I turn off the cache in the itools.conf file I can get the VH to respond
>> on the :81 port but a plain http://mydomain.com/ results in a plain 'can't
>> connect' error.  If I use http://mydomain.com:81 works.
>> 
> 
> It's 5 am Sunday so there may not be many people around to help so I'll take
> a shot.
> 
> I think iTools attempts to rewrite the port numbers from :81 to :80 in the
> /etc/httpd/httpd.conf file when the cache is turned off. So your deal is
> acting as if iTools is unable to write to the /etc/httpd/httpd.conf file to
> make that change.
> 
> What happens if you turn the cache back on.
> 
> OR maybe it's not restarting Apache. As root do:
> # apachectl configtest
> # apachectl restart
> 
> Look in /var/log/httpd/access_log and /var/log/httpd/error_log for clues.
> 
> 
> Can you use some text editor to look at the /etc/httpd/httpd.conf file and
> see if the VHs are in fact :80 and not :81?
> 
> CHECK this line in the httpd.conf file:
> # 
> # Port: The port to which the standalone server listens. For
> # ports < 1023, you will need httpd to be run as root initially.
> #
> Port    80
> 
> the VH block should look like this:
> 
> <VirtualHost    10.0.0.103:80>
> ServerName      g3p.peta.home
> <Directory       /Library/WebServer/WebSites/g3p.peta.home>
> Options Indexes FollowSymLinks MultiViews IncludesNOEXEC
> </Directory>
> DocumentRoot    /Library/WebServer/WebSites/g3p.peta.home
> NameVirtualHost 10.0.0.103
> </VirtualHost>
> 
> Or do this:
> 
> % cd /etc/httpd
> % grep VirtualHost httpd.conf
> % grep Port httpd.conf
> 
> #<VirtualHost *>
> #</VirtualHost>
> <VirtualHost    127.0.0.1:80>
> NameVirtualHost 127.0.0.1
> </VirtualHost>
> <VirtualHost    10.0.0.103:80>
> NameVirtualHost 10.0.0.103
> </VirtualHost>
> <VirtualHost    10.0.0.103:80>
> NameVirtualHost 10.0.0.103
> </VirtualHost>
> 
> 
> 
> 
> ---------        
> ---------
> Tenon Intersystems' iTools Mailing List
> To unsubscribe:  send
> mailto://itools-request@xxxxxxxxxxxxxxx
> with the subject: unsubscribe
> Find searchable mailin list archives at:
> http://itools.blackpepper.co.

---------                                
---------
Tenon Intersystems' iTools Mailing List
To unsubscribe:  send 
mailto://itools-request@xxxxxxxxxxxxxxx
with the subject: unsubscribe
Find searchable mailin list archives at:
http://itools.blackpepper.co.

<Prev in Thread] Current Thread [Next in Thread>

| Tenon Home | Products | Order | Contact Us | About Tenon | Register | Tech Support | Resources | Press Room | Mailing Lists |

Powered By iTools

Copyright©2003 Tenon Intersystems, 232 Anacapa Street, Suite 2A, Santa Barbara, CA 93101. All rights reserved.
Questions about our website - Contact: webmaster@tenon.com.


Tenon Home  Tenon Home  Tenon Home  Tenon Home Product Info  Tenon Ordering Contact About Register Support Resources Press Mailing Lists