in reply to HTTP:Daemon : Address already in use

Add Reuse => 1 to your instantiation parameters, as I show in these columns. The columns explain why as well.

-- Randal L. Schwartz, Perl hacker

Replies are listed 'Best First'.
Re: •Re: HTTP:Daemon : Address already in use
by IlyaM (Parson) on Jun 14, 2002 at 08:17 UTC
    Note that use of Reuse have been deprecated in latest Perls (5.6.1 ???). From perldoc IO::Socket::INET (base class of HTTP::Daemon):
    In addition to the key-value pairs accepted by IO::Socket, "IO::Socket::INET" provides. .... .... ReuseAddr Set SO_REUSEADDR before binding Reuse Set SO_REUSEADDR before binding (deprecated, prefer ReuseAddr) ReusePort Set SO_REUSEPORT before binding

    --
    Ilya Martynov (http://martynov.org/)

      Thx i'll try those tips.

      Richard