Java server process terminates

I have deployed LT on a linux server and started the JAVA server using the command
java -cp languagetool-server.jar org.languagetool.server.HTTPServer --port 8081 --allow-origin “*” --public

When I terminate the SSH session to the linux server, the JAVA Process also terminates.
How can I keep this JAVA process to be up and running always.

Thanks in advance.

You can use nohup command or create a systemd service for languagetool. This will allow the server to run in background.

Thank you. I will try this.