isearch/dockerfiles/agent/start.sh

21 lines
229 B
Bash
Raw Permalink Normal View History

2021-09-18 15:24:07 +08:00
#!/bin/bash
set -e
#初始化
INIT(){
cd /usr/local/isearch/search_agent/bin
./search_agent -d -c ../conf/sa.conf -v 3
}
#守护脚本
PROCESS_DAEMON(){
while :
do
sleep 5
done
}
/usr/sbin/sshd -D &
INIT
PROCESS_DAEMON