I am using an RPi2 and trying to set up the latest java 8 compatible local server.
(none ssl)
I tried default ports, server griped ports already in use - probably server running - it isnt at power up - I’ve not implemented that.
If I change port 80 to 89 and hardware default port to 8449, no more gripews when running the server, it seems happy, but the phone cannot connect - something wrong when connecting to the server. please check port 8449 is open in your network.
I’m trying to register as a new user so not authentication.
I simply filled in (to the android app) 192.168.1.158 and port 8449
sorry not following this… I just pulled this 25 day old file for local server.properties file and heres an excerpt. What should that now read and assuming I’m not interested in ssl for ease initially - which port should the app talk to? Help…
#http, plain web sockets and plain hardware port
http.port=8080
#if this property is true csv download url will use port 80 and will ignore http.port
force.port.80.for.csv=false
#if this property is true redirect_command will use 80 port and will ignore http.port
force.port.80.for.redirect=true
#secured https, web sockets and app port
https.port=9443
#address to bind to. by default bounded to all interfaces
listen.address=
#by default server uses embedded in jar cert to simplify local server installation. #WARNNING DO NOT USE THIS CERTIFICATES ON PRODUCTION OR IN WHERE ENVIRNOMENTS REAL SECURITY REQUIRED. #provide either full path to files either use ‘.’ for specifying current directory. For instance “./myfile.crt”
server.host=
server.ssl.cert=./server_embedded.crt
server.ssl.key=./server_embedded.pem
server.ssl.key.pass=
In the example extracted above, the https port is indeed 9443, but I want to go in insecurely initially until I get my head around the ssl… In the past when I initiaally used Blynk I went in on (I think 8442) non-securely. I’m not doing this with full control of the router, I wont have that control for weeks, so this it internal access only. What port for non secure use of the app?