thanks for your help, here is what I've tried:
> something else is occupying port 9007
This is also the first thing I suspected, so I used lsof to check
this:
$ lsof -i :9007
but nothing is running here.
Netstat shows that 9007 is CONNECTED but there is no process attached
to it:
$ netstat -anp | grep '9007'
unix 3 [ ] STREAM CONNECTED 9007 -
So I think everything is fine here - no?
> I think you must have already started it (perhaps with the wrong docroot?)
Thanks. Since I've killed the hanging server with ctrl-c I didn't
think of that.
$ ps aux | grep 'server\.byte'
showed indeed three running servers which I've killed.
Then I run ./server.byte again. Same error message, but the server
don't shows up anymore in the processes. Strange.
I think the configuration of docroot is correct. I also tried to take
the server inside the '_build' folder, but I got the same error. So
maybe you can see if something is wrong here:
myhost:~/install/ocamljs/orpc2-read-only/examples/clicks
>$ ls
_build index.html
myocamlbuild.ml README server.cfg _tags
clicks.ml Makefile
proto.ml server.byte
server.ml
myhost:~/install/ocamljs/orpc2-read-only/examples/clicks
>$ pwd
/home/benkuin/install/ocamljs/orpc2-read-only/examples/clicks
myhost:~/install/ocamljs/orpc2-read-only/examples/clicks
>$ cat server.cfg | grep docroot
docroot = "/home/benkuin/install/ocamljs/orpc2-read-only/
examples/clicks";
more ideas :-) ?
On Nov 19, 1:46 am, Jake Donham <
jake.don...@gmail.com> wrote: