Hello,
I am trying to use Hunchentoot but every time I start a server I have the following error: 'connexion was reinitialized' every time. I tried to get some information with telnet but I have the message: 'Connection closed by foreign host'.
It was working on my computer before I upgraded it from Ubuntu 9.04 to 10.04. It is very annoying and I do not know what to do. (I upgraded my version of SBCL from 1.0.40 to 1.0.48 but it does not change anything.)
Configuration :
Ubuntu 10.04 Intel Core 2 Duo 64 2.66GHz SBCL 1.0.48 Hunchentoot 1.1.1
François,
I'm sorry to hear that you have problems with Hunchentoot. With the error description that you have provided, it is not possible to diagnose the cause, though. Did you install Hunchentoot using quicklisp? If not, that may be worth a try. If you can't or don't want to do that, please provide us with more information (i.e. paste the Hunchentoot log with the error message, if any, be more specific about where you "have" the error etc.). Also, you could (should) use Hunchentoot's own debugging facilities to find out what is going on.
Best regards, Hans
2011/5/9 François Vallée vallee@labri.fr:
Hello,
I am trying to use Hunchentoot but every time I start a server I have the following error: 'connexion was reinitialized' every time. I tried to get some information with telnet but I have the message: 'Connection closed by foreign host'.
It was working on my computer before I upgraded it from Ubuntu 9.04 to 10.04. It is very annoying and I do not know what to do. (I upgraded my version of SBCL from 1.0.40 to 1.0.48 but it does not change anything.)
Configuration :
Ubuntu 10.04 Intel Core 2 Duo 64 2.66GHz SBCL 1.0.48 Hunchentoot 1.1.1
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
Hi
I have been using ubuntu with hunchentoot since ubuntu 7.4 and have not had this problem.
Here is a suggested way to install sbcl and hunchentoot using quicklisp that works for me. Just ignore the server security bit and skip to the sbcl and hunchentoot install instructions.
http://zaries.wordpress.com/2010/11/09/lisp-web-server-from-scratch-using-hu...
Hope it helps.
Regards
On Mon, 2011-05-09 at 17:10 +0200, Hans Hübner wrote:
François,
I'm sorry to hear that you have problems with Hunchentoot. With the error description that you have provided, it is not possible to diagnose the cause, though. Did you install Hunchentoot using quicklisp? If not, that may be worth a try. If you can't or don't want to do that, please provide us with more information (i.e. paste the Hunchentoot log with the error message, if any, be more specific about where you "have" the error etc.). Also, you could (should) use Hunchentoot's own debugging facilities to find out what is going on.
Best regards, Hans
2011/5/9 François Vallée vallee@labri.fr:
Hello,
I am trying to use Hunchentoot but every time I start a server I have the following error: 'connexion was reinitialized' every time. I tried to get some information with telnet but I have the message: 'Connection closed by foreign host'.
It was working on my computer before I upgraded it from Ubuntu 9.04 to 10.04. It is very annoying and I do not know what to do. (I upgraded my version of SBCL from 1.0.40 to 1.0.48 but it does not change anything.)
Configuration :
Ubuntu 10.04 Intel Core 2 Duo 64 2.66GHz SBCL 1.0.48 Hunchentoot 1.1.1
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
2011/5/9 François Vallée vallee@labri.fr:
Hello,
I am trying to use Hunchentoot but every time I start a server I have the following error: 'connexion was reinitialized' every time. I tried to get some information with telnet but I have the message: 'Connection closed by foreign host'.
It was working on my computer before I upgraded it from Ubuntu 9.04 to 10.04. It is very annoying and I do not know what to do. (I upgraded my version of SBCL from 1.0.40 to 1.0.48 but it does not change anything.)
Configuration :
Ubuntu 10.04 Intel Core 2 Duo 64 2.66GHz SBCL 1.0.48 Hunchentoot 1.1.1
Sounds like a firewall problem. Does your new Ubuntu include some firewall?
Note: you can use lsof (as root) and/or peek in /proc/$pid/fd/ to double check whether your process is listening to some port. If it isn't, then it's a problem with Hunchentoot. If it is, then it's probably a problem with your firewall.
Firewall configuration is out of the scope of this mailing-list.
—♯ƒ • François-René ÐVB Rideau •Reflection&Cybernethics• http://fare.tunes.org Wishing without work is like fishing without bait. — Frank Tyger
Thanks for the replies.
I installed SBCL from sources and hunchentoot using ASDF. I will have a look at Quicklisp but as I said it worked properly before with the same installation. I already checked the firewall before posting and it is not the problem.
I tried to redirect the log messages but I do not have anything in the log files.
A strange thing is that it works with the 0.15.7 version but not with 1.0.0 or 1.1.1.
Regards
On 09/05/2011 16:47, François Vallée wrote:
Hello,
I am trying to use Hunchentoot but every time I start a server I have the following error: 'connexion was reinitialized' every time. I tried to get some information with telnet but I have the message: 'Connection closed by foreign host'.
It was working on my computer before I upgraded it from Ubuntu 9.04 to 10.04. It is very annoying and I do not know what to do. (I upgraded my version of SBCL from 1.0.40 to 1.0.48 but it does not change anything.)
Configuration :
Ubuntu 10.04 Intel Core 2 Duo 64 2.66GHz SBCL 1.0.48 Hunchentoot 1.1.1
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
François,
maybe your usocket version does not work with current Hunchentoot and your new SBCL. Look into the documentation and into the Hunchentoot source code to find out how to enable more debugging. Run single-threaded, use *break-on-signals*, explore yourself. Or use quicklisp to get up-to-date, known-to-work versions of everything.
-Hans
2011/5/10 François Vallée vallee@labri.fr:
Thanks for the replies.
I installed SBCL from sources and hunchentoot using ASDF. I will have a look at Quicklisp but as I said it worked properly before with the same installation. I already checked the firewall before posting and it is not the problem.
I tried to redirect the log messages but I do not have anything in the log files.
A strange thing is that it works with the 0.15.7 version but not with 1.0.0 or 1.1.1.
Regards
On 09/05/2011 16:47, François Vallée wrote:
Hello,
I am trying to use Hunchentoot but every time I start a server I have the following error: 'connexion was reinitialized' every time. I tried to get some information with telnet but I have the message: 'Connection closed by foreign host'.
It was working on my computer before I upgraded it from Ubuntu 9.04 to 10.04. It is very annoying and I do not know what to do. (I upgraded my version of SBCL from 1.0.40 to 1.0.48 but it does not change anything.)
Configuration :
Ubuntu 10.04 Intel Core 2 Duo 64 2.66GHz SBCL 1.0.48 Hunchentoot 1.1.1
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
I finally solve the problem by erasing and reinstalling SBCL and Hunchentoot form Quicklisp. It seems that the problem comes from an old version of one dependency (but I do not know which one exactly).
I want to notify you that the installation with ASDF does not work because of an error in the LIFT library but it may be beyond the scope of this mailing-list ;-)
Thanks for your help.
On 10/05/2011 11:00, Hans Hübner wrote:
François,
maybe your usocket version does not work with current Hunchentoot and your new SBCL. Look into the documentation and into the Hunchentoot source code to find out how to enable more debugging. Run single-threaded, use *break-on-signals*, explore yourself. Or use quicklisp to get up-to-date, known-to-work versions of everything.
-Hans
2011/5/10 François Valléevallee@labri.fr:
Thanks for the replies.
I installed SBCL from sources and hunchentoot using ASDF. I will have a look at Quicklisp but as I said it worked properly before with the same installation. I already checked the firewall before posting and it is not the problem.
I tried to redirect the log messages but I do not have anything in the log files.
A strange thing is that it works with the 0.15.7 version but not with 1.0.0 or 1.1.1.
Regards
On 09/05/2011 16:47, François Vallée wrote:
Hello,
I am trying to use Hunchentoot but every time I start a server I have the following error: 'connexion was reinitialized' every time. I tried to get some information with telnet but I have the message: 'Connection closed by foreign host'.
It was working on my computer before I upgraded it from Ubuntu 9.04 to 10.04. It is very annoying and I do not know what to do. (I upgraded my version of SBCL from 1.0.40 to 1.0.48 but it does not change anything.)
Configuration :
Ubuntu 10.04 Intel Core 2 Duo 64 2.66GHz SBCL 1.0.48 Hunchentoot 1.1.1
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel