9 lines
211 B
Bash
9 lines
211 B
Bash
|
|
#!/bin/bash
|
||
|
|
pkill -f zhuyuan-agent 2>/dev/null
|
||
|
|
sleep 1
|
||
|
|
cd /opt/guanghulab-repo/homepage
|
||
|
|
python3 zhuyuan-agent.py > /tmp/zhuyuan-agent.log 2>&1 &
|
||
|
|
sleep 2
|
||
|
|
echo "Agent started"
|
||
|
|
curl -s http://127.0.0.1:3905/health
|