Re: [Catalyst] test server running off of ipv6?

2008-11-13 Thread marcus baker
2008/11/13 Tomas Doran <[EMAIL PROTECTED]>:
>
> On 13 Nov 2008, at 20:48, marcus baker wrote:
>  actually, as usual this turned out to
>>
>> be one of a number of problems that seem to only pop up when running
>> on a 64bit os - I dropped back down to 32bit Ubuntu, and the ipv6 is
>> still compiled, in however everything works fine now.
>
> I do all my development in the test server, and have production apps
> deployed on Ubuntu x86_64 - never seen any issues...
>
> Do you still have the original system available to reproduce some of the
> errors that you were seeing?
>
> Cheers
> t0m
>


Good to know!  But sorry, I don't have the original system available.

-Marcus

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] test server running off of ipv6?

2008-11-13 Thread Tomas Doran


On 13 Nov 2008, at 20:48, marcus baker wrote:
 actually, as usual this turned out to

be one of a number of problems that seem to only pop up when running
on a 64bit os - I dropped back down to 32bit Ubuntu, and the ipv6 is
still compiled, in however everything works fine now.


I do all my development in the test server, and have production apps  
deployed on Ubuntu x86_64 - never seen any issues...


Do you still have the original system available to reproduce some of  
the errors that you were seeing?


Cheers
t0m


___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


[Catalyst] test server running off of ipv6?

2008-11-13 Thread marcus baker
>>
>> I'm running off of a linode ubuntu image, ipv6 is compiled into the kernel.
>>
>> When running my app_server.pl, it's binding to ipv4.  Via netstat -ntl:
>> tcp0  0 0.0.0.0:30000.0.0.0:*   LISTEN
>>
>> >From reading around it seems like there's some situation where linux
>> machines can't listen to ipv4 and ipv6 at the same time.  Again, it seems
>> that ipv6 support is compiled in so I can't disable it via the modprobe
>> aliases and would rather not bother recompiling (although it looks like I
>> may have to).
>>
>> I'm wondering if there's been any attempt to get the test server going on
>> ipv6?  I attempted altering Catalyst::Engine::HTTP to use IO::Socket::INET6
>> instead of IO::Socket::INET, seemed to get it listening a bit but then it
>> seemed like there were other pieces of code that also need to be updated to
>> work on ipv6 and didn't want to get to far into it without seeing if
>> progress had been made elsewhere.
>
>I don't know of any work in that direction but I'm sure we'd love to see
>somebody give it a go - consider starting a thread on catalyst-dev about
>this.
>
>Also, please subscribe to the list rather than using nabble - we tend to
>have to block them every so often when they forget what "read only" is and
>start letting spam through.
>
>--
>  Matt S Trout   Need help with your Catalyst or DBIx::Class project?
>   Technical Directorhttp://www.shadowcat.co.uk/catalyst/
> Shadowcat Systems Ltd.  Want a managed development or deployment platform?
>http://chainsawblues.vox.com/http://www.shadowcat.co.uk/servers/

Thanks for getting back to me -- actually, as usual this turned out to
be one of a number of problems that seem to only pop up when running
on a 64bit os - I dropped back down to 32bit Ubuntu, and the ipv6 is
still compiled, in however everything works fine now.

-Marcus

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] test server running off of ipv6?

2008-11-13 Thread Matt S Trout
On Thu, Oct 23, 2008 at 11:31:39AM -0700, marcus.baker wrote:
> 
> I'm running off of a linode ubuntu image, ipv6 is compiled into the kernel.
> 
> When running my app_server.pl, it's binding to ipv4.  Via netstat -ntl:
> tcp0  0 0.0.0.0:30000.0.0.0:*   LISTEN
> 
> >From reading around it seems like there's some situation where linux
> machines can't listen to ipv4 and ipv6 at the same time.  Again, it seems
> that ipv6 support is compiled in so I can't disable it via the modprobe
> aliases and would rather not bother recompiling (although it looks like I
> may have to).
> 
> I'm wondering if there's been any attempt to get the test server going on
> ipv6?  I attempted altering Catalyst::Engine::HTTP to use IO::Socket::INET6
> instead of IO::Socket::INET, seemed to get it listening a bit but then it
> seemed like there were other pieces of code that also need to be updated to
> work on ipv6 and didn't want to get to far into it without seeing if
> progress had been made elsewhere.

I don't know of any work in that direction but I'm sure we'd love to see
somebody give it a go - consider starting a thread on catalyst-dev about
this.

Also, please subscribe to the list rather than using nabble - we tend to
have to block them every so often when they forget what "read only" is and
start letting spam through.

-- 
  Matt S Trout   Need help with your Catalyst or DBIx::Class project?
   Technical Directorhttp://www.shadowcat.co.uk/catalyst/
 Shadowcat Systems Ltd.  Want a managed development or deployment platform?
http://chainsawblues.vox.com/http://www.shadowcat.co.uk/servers/

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


[Catalyst] test server running off of ipv6?

2008-10-23 Thread marcus.baker

I'm running off of a linode ubuntu image, ipv6 is compiled into the kernel.

When running my app_server.pl, it's binding to ipv4.  Via netstat -ntl:
tcp0  0 0.0.0.0:30000.0.0.0:*   LISTEN

>From reading around it seems like there's some situation where linux
machines can't listen to ipv4 and ipv6 at the same time.  Again, it seems
that ipv6 support is compiled in so I can't disable it via the modprobe
aliases and would rather not bother recompiling (although it looks like I
may have to).

I'm wondering if there's been any attempt to get the test server going on
ipv6?  I attempted altering Catalyst::Engine::HTTP to use IO::Socket::INET6
instead of IO::Socket::INET, seemed to get it listening a bit but then it
seemed like there were other pieces of code that also need to be updated to
work on ipv6 and didn't want to get to far into it without seeing if
progress had been made elsewhere.

Ultimately if I don't find anything I'll either recompile or just get apache
up on ipv6 and run my test server through that.

-Marcus
-- 
View this message in context: 
http://www.nabble.com/test-server-running-off-of-ipv6--tp20137053p20137053.html
Sent from the Catalyst Web Framework mailing list archive at Nabble.com.


___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/