Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - porg

#1
newLISP and the O.S. / Re: Guiserver on Win10
May 27, 2017, 09:57:34 AM
OK, had a brain moment -

so since the port was already bound, i tried different ports and it listens on them successfully - but i still get no gui display.



So just ran lsof to get  he pid of the process occupying newlisp's port, and i killed the process:

>lsof -i:64001
COMMAND  PID  USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
java    3283 serv1   58u  IPv6  30233      0t0  TCP *:64001 (LISTEN)
> kill 3283
>sudo java -jar guiserver.jar
newLISP-GS v.1.66 on Linux
 double buffering supported.
 listening on 64001


Should work the same way on the windows computer for the original question - try killing whatever process is occupying that port, or pick a different port like this: java -jar guiserver.jar 64002
#2
newLISP and the O.S. / Re: Guiserver on Win10
May 27, 2017, 09:49:14 AM
Tried installing open jdk 1.8 - same issue:
>sudo java -jar guiserver.jar
newLISP-GS v.1.66 on Linux
 double buffering supported.
 listening on 64001
Exception in thread "main" java.net.BindException: Address already in use (Bind failed)
at java.net.PlainSocketImpl.socketBind(Native Method)
at java.net.AbstractPlainSocketImpl.bind(AbstractPlainSocketImpl.java:387)
at java.net.ServerSocket.bind(ServerSocket.java:375)
at java.net.ServerSocket.<init>(ServerSocket.java:237)
at java.net.ServerSocket.<init>(ServerSocket.java:128)
at guiserver.main(guiserver.java:94)


Java installed:
>java -version
openjdk version "1.8.0_131"
OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-0ubuntu1.16.04.2-b11)
OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
#3
newLISP and the O.S. / Re: Guiserver on Win10
May 27, 2017, 09:44:00 AM
Yeah - i have java installed, open jdk 1.7



I trigger the guiserver lisp similar to my windows install and the command line says its listening on a specific port. I wait for the ide to start, thinking that java needed to spin up to display the gui itself (which never appears).
#4
newLISP and the O.S. / Re: Guiserver on Win10
May 21, 2017, 07:44:35 PM
I have the exact same issue, except on ubuntu 16.04



It works fine on my windows 7 box. What the hell guys?