readme.txt
#1
by
Harmony18090 - opened
No description provided.
OpenBioLLM server (port 8001)
Foreground:
cd /root/openbiollm-server && ./run.sh
Background:
cd /root/openbiollm-server && nohup ./run.sh > server.log 2>&1 &
MedFound server (port 8000)
Foreground:
cd /root/server && ./run.sh
Background:
cd /root/server && nohup ./run.sh > server.log 2>&1 &
Background usage
nohup β keeps the process running when the terminal is closed
server.log 2>&1 β writes stdout and stderr to server.log
& β runs the process in the background
To stop a background server:
pkill -f "server.py"# or for a specific port:lsof -ti:8001 | xargs kill