|
From: mark <mc....@gm...> - 2021-09-07 15:34:05
|
Op 07-09-2021 om 16:30 schreef Broking, Brian R: > I am trying to get Geoserver running on a Stand Alone/Air gapped machine > (no internet access) and hoping I can be provided some pointers. > > I have a Virtual Machine with Internet access and have confirmed on RHEL > 8 GeoServer Binary will run just fine. But as soon as I put it on a > Stand Alone machine it starts but I get a 504 error just trying to get > to http://localhost:8080/geoserver <http://localhost:8080/geoserver>. > > I have tried looking through the start.ini, the xml files, everywhere I > can think off. But I am missing something. The error basically says > jetty has not started. And I have tried to unzip start.jar to see what > might be in there. However, I just can not find what is requiring the > Internet or the answer from the internet to actually start. If someone > could point me in the direction to strip out the Internet requirement I > would appreciate it. > does networking work at all? if the machine is disconnected it might drop (part of) tcp/ip networking and jetty would fail to bind to 0.0.0.0:8080. perhaps you can get jetty to bind to a loopback address only like 127.0.0.1:8080. Note I could be way off; it's been a long time since I've seen disconnected machines. also using eg. curl with high verbosity may give better diagnostic info than a browser -M |