file located at <install_dir>\server\bin\ directory as shown below:
#!/bin/sh
# Generated batch file to run Server <version_no>
../setup.sh
nohup java -Dinstall.root=$install_root
-Djava.security.policy=$install_root/lib/pramati/pramati.java.policy
-Djava.security.auth.policy=$install_root/lib/pramati/pramati.jaas.policy
-Djacorb.home=$install_root/lib/tp/jacorb
-Djava.endorsed.dirs=$install_root/lib/std/endorsed
-Djava.awt.headless=true com.pramati.Server $* & 2&>1
The above modifications make sure that the server Java process (started as a result of running the shell script) is detached from the terminal, which means that the Server will run even if the telnet session terminates.
Alternatively, you can also configure the Server to run as a daemon. For instructions to set up Pramati Server as a daemon on Unix-based machines, read How do I set up Pramati Server as a Windows Service?