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

Publish this branch
This branch is in draft mode, publish it to be able to merge.

Sign up or log in to comment