mirror of
				https://github.com/infiniflow/ragflow.git
				synced 2025-10-31 17:59:43 +00:00 
			
		
		
		
	 6b23308f26
			
		
	
	
		6b23308f26
		
			
		
	
	
	
	
		
			
			Added kibana to make elastic management easier. PR #1710 did this. PR #1714 revert this. This PR did again and fix some bugs. - [x] Bug Fix (non-breaking change which fixes an issue) - [x] New Feature (non-breaking change which adds functionality)
		
			
				
	
	
		
			31 lines
		
	
	
		
			529 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			529 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # unset http proxy which maybe set by docker daemon
 | |
| export http_proxy=""; export https_proxy=""; export no_proxy=""; export HTTP_PROXY=""; export HTTPS_PROXY=""; export NO_PROXY=""
 | |
| 
 | |
| /usr/sbin/nginx
 | |
| 
 | |
| export LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/
 | |
| 
 | |
| PY=python3
 | |
| if [[ -z "$WS" || $WS -lt 1 ]]; then
 | |
|   WS=1
 | |
| fi
 | |
| 
 | |
| function task_exe(){
 | |
|     while [ 1 -eq 1 ];do
 | |
|       $PY rag/svr/task_executor.py $1;
 | |
|     done
 | |
| }
 | |
| 
 | |
| for ((i=0;i<WS;i++))
 | |
| do
 | |
|   task_exe  $i &
 | |
| done
 | |
| 
 | |
| while [ 1 -eq 1 ];do
 | |
|     $PY api/ragflow_server.py
 | |
| done
 | |
| 
 | |
| wait;
 |