-
Notifications
You must be signed in to change notification settings - Fork 356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature Request]: Hop server enhancement #4569
Labels
Comments
nadment
added a commit
to nadment/hop
that referenced
this issue
Nov 15, 2024
- add command line options for (host, port, shutdownport, proxyhost, proxyport,ssl) - support for override properties on the command line - add shutdown listener to web server - add shutdown servlet - add RemoteHopServer class to interact with a Hop server and clean HopServerMeta - remove setup hop server syntax by hostname and port
nadment
added a commit
to nadment/hop
that referenced
this issue
Nov 15, 2024
- add command line options for (host, port, shutdownport, proxyhost, proxyport,ssl) - support for override properties on the command line - add shutdown listener to web server - add shutdown servlet - add RemoteHopServer class to interact with a Hop server and clean HopServerMeta - remove setup hop server syntax by hostname and port - add HopServerTerminate extension point after shutdown - all HopServerXXX extension points now provide a HopServer object, rather than a HopServer/WebServer mix
nadment
added a commit
to nadment/hop
that referenced
this issue
Nov 15, 2024
- add command line options for (host, port, shutdownport, proxyhost, proxyport,ssl) - support for override properties on the command line - add shutdown listener to web server - add shutdown servlet - add RemoteHopServer class to interact with a Hop server and clean HopServerMeta - remove setup hop server syntax by hostname and port - add HopServerTerminate extension point after shutdown - all HopServerXXX extension points now provide a HopServer object, rather than a HopServer/WebServer mix
5 tasks
nadment
added a commit
to nadment/hop
that referenced
this issue
Nov 15, 2024
- add command line options for (host, port, shutdownport, proxyhost, proxyport,ssl) - support for override properties on the command line - add shutdown listener to web server - add shutdown servlet - add RemoteHopServer class to interact with a Hop server and clean HopServerMeta - remove setup hop server syntax by hostname and port - add HopServerTerminate extension point after shutdown - all HopServerXXX extension points now provide a HopServer object, rather than a HopServer/WebServer mix
nadment
added a commit
to nadment/hop
that referenced
this issue
Nov 15, 2024
- add command line options for (host, port, shutdownport, proxyhost, proxyport,ssl) - support for override properties on the command line - add shutdown listener to web server - add shutdown servlet - add RemoteHopServer class to interact with a Hop server and clean HopServerMeta - remove setup hop server syntax by hostname and port - add HopServerTerminate extension point after shutdown - all HopServerXXX extension points now provide a HopServer object, rather than a HopServer/WebServer mix
nadment
added a commit
to nadment/hop
that referenced
this issue
Nov 15, 2024
- add command line options for (host, port, shutdownport, proxyhost, proxyport,ssl) - support for override properties on the command line - add shutdown listener to web server - add shutdown servlet - add RemoteHopServer class to interact with a Hop server and clean HopServerMeta - remove setup hop server syntax by hostname and port - add HopServerTerminate extension point after shutdown - all HopServerXXX extension points now provide a HopServer object, rather than a HopServer/WebServer mix
nadment
added a commit
to nadment/hop
that referenced
this issue
Nov 20, 2024
- add command line options for (host, port, shutdownport, proxyhost, proxyport,ssl) - support for override properties on the command line - add shutdown listener to web server - add shutdown servlet - add RemoteHopServer class to interact with a Hop server and clean HopServerMeta - remove setup hop server syntax by hostname and port - add HopServerTerminate extension point after shutdown - all HopServerXXX extension points now provide a HopServer object, rather than a HopServer/WebServer mix - Set abbreviateSynopsis and usageHelpAutoWidth to command line
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What would you like to happen?
The hop-server.bat command has 3 setup modes
hop-server.bat hop-server-config.xml
hop-server.bat -n HOPSERVER01 --gs
hop-server.bat <hostname> <port> <shutdownport> -k -u=<user> -p=<password>
Remove the last mode because it's buggy and doesn't allow the command to indicate which protocol to use: HTTP or HTTPS)
All config parameters must have a command line option, add the following:
If you are using config file or named server mode, it should be possible to override certain properties on the command line:
hop-server.bat hop-server-config.xml -gs -u=<user> -p=<password>
hop-server.bat -n HOPSERVER01 -proxyhost=192.0.0.1 -proxyport=8080
Add command line options
--help
and--version
Add the command to stop a remote server on a shutdown port requiring authentication.
hop-server.bat hop-server-config.xml --kill
hop-server.bat -n HOPSERVER01 -k -shutdowport=8082
Code cleanup
Issue Priority
Priority: 3
Issue Component
Component: Hop Server
The text was updated successfully, but these errors were encountered: